我正在尝试使用xdebug
和xdebug_break()
方法调试我的PHP脚本。它开始工作,我的IDE( PHPDesigner )正常停止,但立即停止。阅读debug.remote_logs
文件,我可以检查最后一行是:
<- context_get -i 429 -c 0
之后,我没有收到有关GET数据的XML数据的返回。所以我认为存在问题,但我该如何解决?
我的php.ini xdebug配置是:
[xdebug]
xdebug.remote_mode=jit
xdebug.remote_enable=1
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
xdebug.remote_log=C:\Wamp\logs\xdebug.log
xdebug.idekey=xdebug
我也尝试使用XDBG,它抛出异常并停止工作。 remote_logs
文件显示相同的失败。使用php_xdebug-2.2.0-5.4-vc9.dll
。
答案 0 :(得分:0)
在发布之前,我查看了xDebug的最后一个版本,它是php_xdebug-2.2.2-5.4-vc9.dll
(diff:old 2.2.0,new 2.2.2)。更新解决我的问题,现在一切正常。 Yey!