使用 Xdebug 的 PhpStorm 新项目开始出现奇怪的问题在 Docker 中使用与其他项目相同的配置运行 PHP,Xdebug 可以毫无问题地工作,经过无数次仔细检查后,它们之间几乎没有区别,PhpStorm 配置完全相同。问题是一切看起来都正常,连接出现但没有任何停止,我将此主题命名为与我在此处找到的完全相同的主题,剧透(它对我没有帮助:( )还按照该主题中的建议启用了日志记录,这是一个会话的日志[13] Log opened at 2020-08-12 15:50:53[13] I: Connecting to configured address/port: 172.17.0.1:9000.[13] I: Connected to client. :-)[13] -> <init xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" fileuri="file:///var/www/html/pub/index.php" language="PHP" xdebug:language_version="7.3.20" protocol_version="1.0" appid="13" idekey="PHPSTORM"><engine version="2.9.6"><![CDATA[Xdebug]]></engine><author><![CDATA[Derick Rethans]]></author><url><![CDATA[https://xdebug.org]]></url><copyright><![CDATA[Copyright (c) 2002-2020 by Derick Rethans]]></copyright></init>[13] <- feature_set -i 1 -n show_hidden -v 1[13] -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="feature_set" transaction_id="1" feature="show_hidden" success="1"></response>[13] <- feature_set -i 2 -n max_depth -v 1[13] -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="feature_set" transaction_id="2" feature="max_depth" success="1"></response>[13] <- feature_set -i 3 -n max_children -v 100[13] -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="feature_set" transaction_id="3" feature="max_children" success="1"></response>[13] <- feature_set -i 4 -n extended_properties -v 1[13] -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="feature_set" transaction_id="4" feature="extended_properties" success="1"></response>[13] <- feature_set -i 5 -n notify_ok -v 1[13] -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="feature_set" transaction_id="5" feature="notify_ok" success="1"></response>正如这里所看到的,没有任何错误的迹象,我们将不胜感激
1 回答
九州编程
TA贡献1785条经验 获得超4个赞
它表明 IDE 正在设置断点:
breakpoint_set -i 9 -t line -f file:///var/ww/html/pub/index.php -n 13
但正在调试的文件是:
fileuri="file:///var/www/html/pub/index.php"
我认为您只是拼写错误了 IDE 中的路径映射,您在/var/ww
其中使用了/var/www
.
- 1 回答
- 0 关注
- 95 浏览
添加回答
举报
0/150
提交
取消