在VS代码中调试PHP-“ skipFiles”?

时间:2019-02-16 13:09:24

标签: php visual-studio-code xdebug

我正在尝试使用Visual Studio Code(在Chrome中安装XDEBUG)调试网站。它工作正常,但是让我不得不浏览所有文件(例如通过数据库运行的脚本等)使我很烦

我看到可以在launch.json文件中使用“ skipFiles”跳过某些文件,但是看起来这仅用于调试Node.js,它还说“不允许属性skipFiles”。 / p>

    {
  // 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,
      "skipFiles": [
        "auto_prepend.php",
        "application_top.php",
        "database.php"
      ]
    },
    {
      "name": "Launch currently open script",
      "type": "php",
      "request": "launch",
      "program": "${file}",
      "cwd": "${fileDirname}",
      "port": 9000
    }    
  ]
}

在VS Code中进行调试时,是否可以跳过文件?

1 个答案:

答案 0 :(得分:0)

好的,现在我觉得很傻;-)您可以使用F10(跳过)来不跳出文件。也许有人有相同的问题,他可以阅读。