[Xdebug]
zend_extension=xdebug
xdebug.collect_params=1
xdebug.collect_return=1
xdebug.auto_trace=1
xdebug.trace_output_dir="E:\UPUPW_NP7.2_64\xdebug\trace"
xdebug.profiler_enable=0
xdebug.profiler_output_dir="E:\UPUPW_NP7.2_64\xdebug\profiler"
xdebug.max_nesting_level=100
xdebug.remote_enable=1
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
xdebug.auto_trace=1
1代表自动开启,0代表手动控制(可以使用浏览器的phpdebug扩展进行控制)
xdebug.remote_host=localhost
注意localhost
与127.0.0.1
是有区别的,不一致写法可能会导致无法debug
网友评论