gpt4 book ai didi

php - Xdebug 忽略断点

转载 作者:IT王子 更新时间:2023-10-29 00:03:04 24 4
gpt4 key购买 nike

我目前正在尝试获取 Xdebug在我们的开发服务器上工作。作为客户端,我使用的是 netbeans,到目前为止,连接工作没有问题。但是当我尝试在 netbeans 中设置断点时,它只是被忽略了。

是的,我已经用谷歌搜索了几个小时,还在这里找到了一些完全符合我描述的问题: SO 1 SO 2

但这似乎并不能解决我的问题。 Xdebug 模块是通过 zend_extension=path/to/xdebug 加载的。所以在

/etc/php5/conf.d/xdebug.ini

我还查看了 php5/apache 和 php5/cli php.ini 以确保它没有在某处加载 extension=。我还检查了 phpinfo() 找到的“已解析的其他 .ini 文件”,它似乎没有其他地方加载。

通过执行 php -m 可以看到加载的 Xdebug 模块在

[PHP 模块]

[Zend 模块]

不确定这是否表明它仍然加载了两次,或者是否可以这样?如果我从 conf.d/xdebug.ini 中删除 zend_extension=/path/to/xdebug.so 它也不再加载。所以我真的认为它只加载在那里。

如果我设置了 remote_log 选项,则会看到 Netbeans 正在尝试设置一些东西:

<- breakpoint_set -i 452 -t line -s enabled 
-f file:///http:/development.xxx.de/users/itsame/index.php -n 15
-> <response xmlns="urn:debugger_protocol_v1"
xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="breakpoint_set"
transaction_id="452" state="enabled" id="258870001">
</response>

但它似乎没有效果(看起来与我上面发布的其他 SO 问题几乎相同。但如果我在 php 代码中执行手动 xdebug_break() ,它会正确处理它。

PHP 版本是 5.2.6,Xdebug 是 2.1。有什么建议可以让我接下来看看吗?

最佳答案

包含断点的文件的路径似乎有问题。

<- breakpoint_set -i 452 -t line -s enabled 
-f file:///http:/development.xxx.de/users/itsame/index.php -n 15 ->

Eclipse 也遇到过类似的问题。只有我在索引文件中的断点被接受,而其他文件中的断点(包括在索引中)被忽略了。

我查看了 remote_log 文件并看到以下内容:

<- breakpoint_set -i 260 -t line 
-f file:///~jeroen/workspace/fieg/wp-content/plugins/fieg/fieg.php -n 22->
<response xmlns="urn:debugger_protocol_v1"
xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="breakpoint_set"
transaction_id="260" id="48060002"></response>

我注意到断点的路径全错了。原来我必须在 Eclipse 中设置端口映射。设置正确的映射后,断点开始工作。我的 remote_log 现在也显示了正确的路径:

<- breakpoint_set -i 333 -t line 
-f file:///Users/jeroen/Workspace/fieg/wp-content/plugins/fieg/fieg.php -n 12->
<response xmlns="urn:debugger_protocol_v1"
xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="breakpoint_set"
transaction_id="333" id="48080005"></response>

我不确定 Netbeans 中是否有等效的 Eclipse 端口映射配置,但希望我为您指明了正确的方向。

关于php - Xdebug 忽略断点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3422433/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com