0

我正在尝试使用xdebugandxdebug_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.

4

1 回答 1

0

在发布之前,我检查了 xDebug 的最新版本,它是php_xdebug-2.2.2-5.4-vc9.dll(差异:旧 2.2.0,新 2.2.2)。更新解决了我的问题,现在一切正常。耶!

于 2013-03-27T17:45:56.780 回答