-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathExceptionHandler.php
42 lines (35 loc) · 1.15 KB
/
ExceptionHandler.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
class ExceptionHandler {
public static function handle($e) {
while (ob_get_level() > 0)
ob_end_clean();
http_response_code(500);
$name = get_class($e);
$message = $e->getMessage();
$path = clearSystemPath($e->getFile());
$line = $e->getLine();
echo("An exception occured: [<b>{$name}</b>] <b>{$message}</b> in <i>{$path}</i> on line {$line} <br />");
self::printStackTrace($e->getTrace());
exit();
}
private static function printStackTrace($trace = []) {
echo('<ol>');
foreach ($trace as $id => $data) {
$function = $data['function'];
$line = $data['line'];
$file = clearSystemPath($data['file']);
$class = isset($data['class']) ? $data['class'] : '';
$type = isset($data['type']) ? $data['type'] : '';
$args = [];
foreach ($data['args'] as $arg) {
if (is_object($arg))
$args[] = get_class($arg);
else
$args[] = gettype($arg);
}
$args = implode(', ', $args);
echo("<li><b>{$class}{$type}{$function}</b>({$args}) in <i>{$file}</i> at line {$line}</li>");
}
echo('</ol>');
}
}