我很难在一些 php 代码中找到断点。我没有做太多的php,所以可能是新手错误。
我已经阅读了其他问题,PDT Install Instructions和XDebug Install Instructions
对于这两个调试器,说明期望配置部分显示在 phpinfo() 中,但它不适合我。
有关我当前设置的一些信息
- 视窗
- 安培
- PHP 5.2.17
- 网站运行良好
我需要一些帮助来检查或了解我可能需要做的不同的事情。
我现在几乎被困住了。
我很难在一些 php 代码中找到断点。我没有做太多的php,所以可能是新手错误。
我已经阅读了其他问题,PDT Install Instructions和XDebug Install Instructions
对于这两个调试器,说明期望配置部分显示在 phpinfo() 中,但它不适合我。
有关我当前设置的一些信息
我需要一些帮助来检查或了解我可能需要做的不同的事情。
我现在几乎被困住了。
您可以按照这篇文章在 AMPPS 中安装 Xdebug for PHP。
解决我的问题的两个主要问题。
配置设置如下供参考:
;Stuff to allow debugging in eclipse
zend_extension="C:\Program Files (x86)\Ampps\php\ext\php_xdebug-2.2.3-5.3-vc9.dll"
xdebug.remote_enable=On
xdebug.remote_autostart=On
xdebug.remote_handler=dbgp
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.remote_mode=req
您必须确保并添加额外的 xdebug 配置,否则 eclipse 将无法合作。