zend用xdebug调试
Posted 帽子戏法
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了zend用xdebug调试相关的知识,希望对你有一定的参考价值。
我的php版本是5.3.3
下载相应的xdebug扩展放到php/ext/下
2.1.1
修改php.ini文件
[Xdebug]
;开启自动跟踪
xdebug.auto_trace = On
;开启异常跟踪
xdebug.show_exception_trace = On
;收集变量
xdebug.collect_vars = On
;收集返回值
xdebug.collect_return = On
;收集参数
xdebug.collect_params = On
zend_extension=D:\wamp\bin\php\php5.3.3\ext\php_xdebug.dll
xdebug.profiler_enable=on
xdebug.trace_output_dir="/workspace/xdebuginfo/xdebug"
xdebug.profiler_output_dir="/workspace/xdebuginfo/xdebug"
;开启远程调试自动启动
xdebug.remote_autostart = On
;开启远程调试 Xdebug允许远程IDE连接
xdebug.remote_enable = On
xdebug.remote_host=192.168.1.200
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
以上是关于zend用xdebug调试的主要内容,如果未能解决你的问题,请参考以下文章