如何使用 xdebug 和 eclipse IDE 来处理 PHP?

如何使用 xdebug 和 eclipse IDE 来处理 PHP?

你好,我的 PHP 项目是在远程测试机器上设置的。我需要使用 eclipse IDE 对其进行调试。我该如何进行呢?我知道我应该更喜欢 Xdebug,而不是 zend 调试器。

请澄清我的疑问。

答案1

以下是一份出色的指南:http://devzone.zend.com/article/2930

当你到达这一点时:

xdebug.remote_enable=On
xdebug.remote_host="localhost"
xdebug.remote_port=9000
xdebug.remote_handler="dbgp"

只需将 localhost 更改为您的外部 IP 地址

相关内容