无法运行我的VSCode调试工具?

时间:2019-05-15 14:06:13

标签: laravel visual-studio-code xdebug

几天后,VSCode调试工具无法正常工作。

我为Laravel项目调试安装了所有东西。但是,几天后,当我尝试执行一些断点调试时,调试工具无法正常工作,可以进入下一步。无论我重新启动任何服务,它都保持不变。

这是我的配置文件。

    // 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": "Listen for XDebug",
            "type": "php",
            "request": "launch",
            "port": 9000
        },
        {
            "name": "Launch currently open script",
            "type": "php",
            "request": "launch",
            "program": "${file}",
            "cwd": "${fileDirname}",
            "port": 9000
        }
    ]
}

0 个答案:

没有答案