1

当使用 VSCode 运行 XDebug 并设置断点时,站点在调试完成后会在某个点挂起。此外,如果我在一个甚至没有被命中的页面上放置一个断点,它仍然会失败。如果我不设置断点,一切都很好。以下是我的配置:

php.ini 中的 XDebug 配置

 [XDebug] 
 xdebug.remote_enable = 1 
 xdebug.remote_autostart = 1

启动.json

{
    "name": "Listen for XDebug",
    "type": "php",
    "request": "launch",
    "port": 9000,
    "pathMappings": {
        "/mnt/c/": "c:/"
    }
}
4

0 回答 0