[XDebug]
zend_extension = "D:\xampp\php\ext\php_xdebug.dll"
xdebug.collect_params = 1
;打开收集“函数参数”的功能。将函数调用的参数值列入函数过程调用的监测信息中。
xdebug.collect_return= 1
;将函数调用的返回值加入到函数过程调用的监测中
xdebug.auto_trace= 1
;自动打开“监测函数调用过程”的功模。该功能可以在你指定的目录中将函数调用的监测信息以文件的形式输出。
xdebug.trace_output_dir="D:\xampp\php\tmp"
;设定函数调用监测信息的输出文件的路径
xdebug.profiler_enable= 1
;打开效能监测器
xdebug.profiler_output_dir="D:\xampp\php\tmp"
;设定效能监测信息输出文件的路径
xdebug.remote_enable= 1
;远程调试打开
xdebug.remote_handler=dbgp
;远程头请求方式
xdebug.remote_host=localhost
;远程地址
xdebug.remote_port=9000
;远程端口号
相关文章: