1:xdebug.default_enable
默认值:on
显示错误的跟踪信息。建议开启
2:xdebug.max_nesting_level
默认值:100
限制无限递归的访问深度,即递归的次数。该参数值表示程序在失败前所执行的最大递归数。
3:xdebug.scream
默认值:0
当其值为1的时候,会使@操作符不再对notice,warning,error起到隐藏作用
4:xdebug.collect_includes
默认值:1
当值为1的时候,不论php使用的是include ,include_once,require,require_once,xdebug都会跟踪该文件
;是否开启自动跟踪
xdebug.auto_trace = On
;是否开启异常跟踪
xdebug.show_exception_trace = On
;是否开启远程调试自动启动
;xdebug.remote_autostart = On
;是否开启远程调试
;xdebug.remote_enable = On
;允许调试的客户端IP
;xdebug.remote_host=192.168.1.107
;远程调试的端口(默认9000)
;xdebug.remote_port=9000
;调试插件dbgp
;xdebug.remote_handler=dbgp
;是否收集变量
xdebug.collect_vars = On
;是否收集返回值
xdebug.collect_return = On
;是否收集参数
xdebug.collect_params = On
;跟踪输出路径
;xdebug.trace_output_dir="d:\xdebug_trace"
;是否开启调试内容
xdebug.profiler_enable=On
;调试输出路径
;xdebug.profiler_output_dir="d:\xdebug_error"
xdebug.dump_once = On
xdebug.dump_globals = On
xdebug.dump_undefined = On
xdebug.dump.REQUEST = *
xdebug.dump.SERVER = REQUEST_METHOD,REQUEST_URI,HTTP_USER_AGENT
string xdebug_call_class()
返回当前被调用的函数或方法所属的类的类名
string xdebug_call_file()
返回调用当前函数的文件名
string xdebug_call_function()
返回调用当前正在执行的函数的函数名
int xdebug_call_line()
返回该函数是在哪一行被调用的。
void xdebug_disable()/xdebug_enable()
禁止/激活显示错误的跟踪栈信息
xdebug_start_error_collection()
xdebug_stop_error_collection()
xdebug_get_collected_errors()
错误收集开始函数,当此函数被执行的时候,xdebug将不在页面上显示错误信息,而是将错误信息以xdebug
自己的规则记录在缓冲区。直到遇到xdebug_stop_error_collection()函数。缓冲区的内容将由xdebug_get_collected_errors()
函数的调用而显示。此功能可以让你的页面不被xdebug的错误显示破坏。
array xdebug_get_headers()
返回所有由php设置的头信息。比如由header(),setcookie函数设置的头信息.
xdebug_is_enabled()
返回xdebug的跟踪状态是否被激活 xdebug.default_enable的值
int xdebug_memory_usage()
返回脚本当前的内存使用数
int xdebug_peak_memory_usage()
返回脚本直达目前为止这段过程中的使用内存的最高值
float xdebug_time_index()
返回脚本开始到现在所使用的秒数
变量显示功能
var_dump( [mixed var [, ...]] )
void xdebug_debug_zval( [string varname [, ...]] )
void xdebug_debug_zval_stdout( [string varname [, ...]] )
返回一个变量的标准输出信息,包括类型,值,引用次数等。。
void xdebug_dump_superglobals()
返回全局变量的信息
void xdebug_var_dump( [mixed var [, ...]] )
显示变量的详细信息
堆栈跟踪
array xdebug_get_declared_vars()
返回申明的变量集合
array xdebug_get_function_stack()
返回跟踪栈的详细信息(跟踪函数执行步骤)
函数跟踪
xdebug_start_code_coverage()
开始跟踪
array xdebug_get_code_coverage()
返回代码执行去向