-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathxdebug.php
91 lines (50 loc) · 1.79 KB
/
xdebug.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php
// Start of xdebug v.2.4.0
function xdebug_get_stack_depth() {}
function xdebug_get_function_stack() {}
function xdebug_get_formatted_function_stack() {}
function xdebug_print_function_stack() {}
function xdebug_get_declared_vars() {}
function xdebug_call_class() {}
function xdebug_call_function() {}
function xdebug_call_file() {}
function xdebug_call_line() {}
function xdebug_var_dump() {}
function xdebug_debug_zval() {}
function xdebug_debug_zval_stdout() {}
function xdebug_enable() {}
function xdebug_disable() {}
function xdebug_is_enabled() {}
function xdebug_break() {}
function xdebug_start_trace() {}
function xdebug_stop_trace() {}
function xdebug_get_tracefile_name() {}
function xdebug_get_profiler_filename() {}
function xdebug_dump_aggr_profiling_data() {}
function xdebug_clear_aggr_profiling_data() {}
function xdebug_memory_usage() {}
function xdebug_peak_memory_usage() {}
function xdebug_time_index() {}
function xdebug_start_error_collection() {}
function xdebug_stop_error_collection() {}
function xdebug_get_collected_errors() {}
function xdebug_start_function_monitor() {}
function xdebug_stop_function_monitor() {}
function xdebug_get_monitored_functions() {}
function xdebug_start_code_coverage() {}
function xdebug_stop_code_coverage() {}
function xdebug_get_code_coverage() {}
function xdebug_code_coverage_started() {}
function xdebug_get_function_count() {}
function xdebug_dump_superglobals() {}
function xdebug_get_headers() {}
define ('XDEBUG_TRACE_APPEND', 1);
define ('XDEBUG_TRACE_COMPUTERIZED', 2);
define ('XDEBUG_TRACE_HTML', 4);
define ('XDEBUG_TRACE_NAKED_FILENAME', 8);
define ('XDEBUG_CC_UNUSED', 1);
define ('XDEBUG_CC_DEAD_CODE', 2);
define ('XDEBUG_CC_BRANCH_CHECK', 4);
define ('XDEBUG_STACK_NO_DESC', 1);
// End of xdebug v.2.4.0
?>