ZendStudio配置PHP断点调试
目录
其它按照网上的教程做就行了,重要的是这份配置,配置对了断点调试配置基本就成功80%了。
[XDebug]
zend_extension = "F:\xampp\php\ext\php_xdebug.dll"
;是否开启远程调试
xdebug.remote_enable = 1
;是否开启调试内容
xdebug.profiler_enable = 1
;开启远程调试自动启动
xdebug.remote_autostart = 0
;开启自动跟踪
xdebug.auto_trace = 1
;调试插件dbgp
xdebug.remote_handler = "dbgp"
;允许调试的客户端IP
xdebug.remote_host = "172.21.32.1"
;远程调试的端口
xdebug.remote_port = 9001
xdebug.idekey= "ECLIPSE_DBGP"
;调试输出路径
xdebug.profiler_output_dir = "F:\xampp\tmp"
xdebug.remote_log = "F:\xampp\tmp\remote.log"
;跟踪输出路径
xdebug.trace_output_dir = "F:\xampp\tmp"
;开启异常跟踪
xdebug.show_exception_trace = 1
;是否收集变量
xdebug.collect_vars = 1
;是否收集返回值
xdebug.collect_return = 1
;是否收集参数
xdebug.collect_params = 1
;显示局部变量
xdebug.show_local_vars = 1
;显示默认的错误信息
xdebug.default_enable = 1
xdebug.profiler_enable_trigger = 0