|
1
|
|
|
<?php |
|
2
|
|
|
class Debug { |
|
|
|
|
|
|
3
|
|
|
public static $stack; |
|
4
|
|
|
private static $initialized = false; |
|
5
|
|
|
private function __construct() {} |
|
6
|
|
|
private static function initialize() { |
|
|
|
|
|
|
7
|
|
|
if (self::$initialized) |
|
8
|
|
|
return; |
|
9
|
|
|
self::$stack = []; |
|
10
|
|
|
self::$initialized = true; |
|
11
|
|
|
} |
|
12
|
|
|
private static function out( $_object ) { |
|
13
|
|
|
if(is_object($_object)) { |
|
14
|
|
|
echo "isObject"; |
|
15
|
|
|
} else if(is_array($_object)) { |
|
16
|
|
|
arrayDump($_object, "Debug"); |
|
17
|
|
|
} else { |
|
18
|
|
|
echo $_object; |
|
19
|
|
|
} |
|
20
|
|
|
} |
|
21
|
|
|
public static function error( $_object ) { |
|
22
|
|
|
self::out(["Error" => $_object]); |
|
23
|
|
|
} |
|
24
|
|
|
public static function warning( $_object ) { |
|
25
|
|
|
self::out(["Warning" => $_object]); |
|
26
|
|
|
} |
|
27
|
|
|
public static function fatal( $_object ) { |
|
28
|
|
|
self::out(["Fatal error" => $_object]); |
|
29
|
|
|
exit(1); |
|
|
|
|
|
|
30
|
|
|
} |
|
31
|
|
|
public static function logln( $_object ) { |
|
32
|
|
|
self::log($_object); |
|
|
|
|
|
|
33
|
|
|
self::out("<br>"); |
|
34
|
|
|
} |
|
35
|
|
|
public static function logStack( $_object ) { |
|
36
|
|
|
self::out([ |
|
37
|
|
|
"position" => self::$stack, |
|
38
|
|
|
"error" => $_object |
|
39
|
|
|
]); |
|
40
|
|
|
self::out("<br>"); |
|
41
|
|
|
} |
|
42
|
|
|
public static function push() { |
|
43
|
|
|
$debugInfo = debug_backtrace(); |
|
44
|
|
|
$debugInfo = [ |
|
45
|
|
|
"file" => $debugInfo[1]["file"], |
|
46
|
|
|
"line" => $debugInfo[1]["line"], |
|
47
|
|
|
"function" => $debugInfo[1]["function"], |
|
48
|
|
|
"class" => $debugInfo[1]["class"] |
|
49
|
|
|
]; |
|
50
|
|
|
self::$stack[] = $debugInfo; |
|
51
|
|
|
} |
|
52
|
|
|
public static function pop() { |
|
53
|
|
|
if(count(self::$stack)>0) |
|
54
|
|
|
array_shift(self::$stack); |
|
55
|
|
|
} |
|
56
|
|
|
public static function emptyStack() { |
|
57
|
|
|
self::$stack = []; |
|
58
|
|
|
} |
|
59
|
|
|
} |
|
60
|
|
|
?> |
|
|
|
|
|
|
61
|
|
|
|
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.