使用 VSCode 和 PHP (7) Ubuntu 中的调试器

Using VSCode with PHP (7) Debugger in Ubuntu

我在 Ubuntu 中使用 VSCode 来处理 php 项目。我在 php 调试器扩展(和 xdebug)方面工作得很好,但现在它突然停止工作了。 (没有更新,配置没有变化。只是一个简单的重启计算机)。确切的问题是 VSCode 不会在代码中的断点处停止。

Netbeans 与 xdebug 配合得很好,所以我不知道 VSCode.

会出现什么问题

我应该尝试的任何提示或想法?

提前致谢。

我已经更改了 xdebug 所在的端口 运行,尝试从 Internet 上使用不同的 launch.json,但不知道发生了什么。我最近激活了日志选项,我从 vscode 得到一些输出,大约 "malformed HTTP Request",我想这是一个线索。

这是我的 launch.json 文件,其中包含我设置的配置。 (xdebug 在 php.ini 文件中的端口 9090 上)

{
    // 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": 9090,
            "log": true
        },
        {
            "name": "Launch server",
            "type": "php",
            "request": "launch",
            "program": "${workspaceRoot}/site/index.php",
            "runtimeExecutable": "php",
            "runtimeArgs": [
                "-dzend_extension=/usr/lib/php/20170718/xdebug.so",
                "-S",
                "0.0.0.0:9090"
            ],
            "cwd": "${workspaceRoot}",
            "port": 9090,
            "log" : true
        }
    ]
  }

VSCode 日志的输出:

<- launchResponse
Response {
  seq: 0,
  type: 'response',
  request_seq: 2,
  command: 'launch',
  success: true }

<- outputEvent
OutputEvent {
  seq: 0,
  type: 'event',
  event: 'output',
  body:
   { category: 'stderr',
     output:
      '[Fri Nov  1 10:50:06 2019] 127.0.0.1:49922 Invalid request (Malformed HTTP request)\n' } }

这很尴尬,但我是用 CTRL + F5 执行 iDE,而不仅仅是 F5(我习惯于 visual studio)。

这就是整个问题...

谢谢!