使用Xdebug的PHP调试不会在断点停止(XAMPP)

xzv2uavs  于 2023-02-11  发布在  PHP
关注(0)|答案(1)|浏览(147)

首先,我对PHP还是个新手,我正在尝试在VS代码中使用PHP Debug扩展,PHP版本是8.0.2,Xdebug版本是3.0.2。
我已经将Apache端口切换到9000/90001。当我导航到localhost:9000/test.php时,浏览器中的一切似乎都正常工作。但是,当我尝试在VS代码中调试时,断点从未触发。
我的PHP.ini Xdebug部分:

[XDebug]
zend_extension = "C:\xampp\php\ext\php_xdebug-3.0.2-8.0-vs16-x86_64.dll"
xdebug.mode = debug
xdebug.start_with_request = yes
xdebug.client_port = 9000
xdebug.remote_enable = 1
xdebug.remote_autostart = 1
xdebug.remote_connect_back = 1
xdebug.idekey = VSCODE
xdebug.remote_host=127.0.0.1
xdebug.default_enable=1

xdebug.profiler_append = 0
xdebug.profiler_enable = 0
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_dir = "c:\xampp\tmp"
xdebug.remote_handler = "dbgp"
xdebug.remote_log = "c:\xampp\tmp\xdebug.txt"
xdebug.trace_output_dir = "c:\xampp\tmp"
xdebug.remote_cookie_expire_time = 36000

我的发射。

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Launch currently open script",
            "type": "php",
            "request": "launch",
            "program": "",
            "cwd": "",
            "port": 9000
        },
        {
            "name": "Listen for XDebug",
            "type": "php",
            "request": "launch",
            "port": 9000
        }
    ]
}

这里的任何帮助将不胜感激!

of1yzvn4

of1yzvn41#

您的配置包含来自不同XDebug版本(v2.x和v3)的混合语句,而您的XDebug扩展看起来是v3。请查看以下指南以了解哪个配置应属于v3:
https://xdebug.org/docs/upgrade_guide
我已经使用v3成功完成了此配置:

xdebug.mode = debug
xdebug.start_with_request = yes
xdebug.client_host=192.168.1.3
xdebug.client_port=9000
xdebug.log=/tmp/xdebug.log

相关问题