Visual Studio代码不会在PHP Xdebug中的断点处停止

我从Thinkpad笔记本电脑转到HP Elitebook.我必须在我的新笔记本电脑中设置我的开发环境.在Windows 10 Pro 64位版本中设置我的Visual Studio代码和XAMPP后,我无法调试我的PHP代码.

我已经为Visual Studio Code正确安装了Xdebug扩展,并确保php.ini正确.这是我对php.ini的设置(我使用便携式XAMPP放在E:驱动器上):

zend_extension = "E:\xampp\php\ext\php_xdebug-2.4.1-5.4-vc9.dll"
xdebug.remote_enable = 1
xdebug.remote_autostart = 1
xdebug.remote_log="E:\xampp\apache\logs\xdebug.log"

我的xdebug.log显示如下信息:

Log opened at 2018-10-27 05:56:45
I: Connecting to configured address/port: localhost:9000.
I: Connected to client. :-)
-> <init xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" fileuri="file:///E:/xampp/htdocs/absen/index.php" language="PHP" xdebug:language_version="5.4.3-dev" protocol_version="1.0" appid="7112" idekey="william"><engine version="2.4.1"><![CDATA[Xdebug]]></engine><author><![CDATA[Derick Rethans]]></author><url><![CDATA[http://xdebug.org]]></url><copyright><![CDATA[Copyright (c) 2002-2016 by Derick Rethans]]></copyright></init>

-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" status="stopping" reason="ok"></response>

Log closed at 2018-10-27 05:56:45

但我的Visual Studio代码不会在断点处停止.

我已重新安装我的Visual Studio代码,XAMPP,并使用另一个Xdebug版本,但它仍然无法正常工作.

我有以下链接:

> visual studio code PHP debugging not working
> xdebug won’t stop at breakpoint
> xdebug breakpoint fail
> Xdebug successfully connects to DBGP clients, but won’t stop at breakpoints

这些解决方案都不起作用.

解决方法:

最后我知道问题的根源. HP Elitebook预装了名为HP Velocity的程序,该程序使用端口9000.

问题是我的主机端口9000绑定到HP Velocity软件的端口9000.当HP Velocity服务连接到localhost xdebug服务器时,日志表明连接正常,但它已连接到HP Velocity.

我在php.ini中将xdebug端口更改为9090,并在visual studio代码中的launch.json中进行了更改.之后,我的visual studio代码照常工作,可以在断点处停止.

希望这能帮到别人:)

上一篇:当单独运行时,PHPUnit报告同一测试的不同代码覆盖率%


下一篇:php – xdebug,sublime-text-2和KindariSublimeXdebug