1 | <?php |
||
9 | class Misc |
||
10 | { |
||
11 | /** |
||
12 | * Can we at this point in time send HTTP headers? |
||
13 | * |
||
14 | * Currently this checks if we are even serving an HTTP request, |
||
15 | * as opposed to running from a command line. |
||
16 | * |
||
17 | * If we are serving an HTTP request, we check if it's not too late. |
||
18 | * |
||
19 | * @return bool |
||
20 | */ |
||
21 | 3 | public static function canSendHeaders() |
|
25 | |||
26 | public static function isAjaxRequest() |
||
32 | |||
33 | /** |
||
34 | * Check, if possible, that this execution was triggered by a command line. |
||
35 | * @return bool |
||
36 | */ |
||
37 | public static function isCommandLine() |
||
41 | |||
42 | /** |
||
43 | * Translate ErrorException code into the represented constant. |
||
44 | * |
||
45 | * @param int $error_code |
||
46 | * @return string |
||
47 | */ |
||
48 | 2 | public static function translateErrorCode($error_code) |
|
60 | |||
61 | /** |
||
62 | * Determine if an error level is fatal (halts execution) |
||
63 | * |
||
64 | * @param int $level |
||
65 | * @return bool |
||
66 | */ |
||
67 | public static function isLevelFatal($level) |
||
77 | } |
||
78 |