Код VS не останавливается в точке останова с PHP XDebug - PullRequest
0 голосов
/ 15 февраля 2020

Я работаю в приложении Laravel, я пытаюсь использовать XDEBUG с кодом WAMP Server и Visual Studio, когда я запускаю «Listen for XDEBUG» в коде VS, это не останавливается на точке останова, а на странице все еще отвечает, как будто отладка работает, но не останавливается в точке останова.

Я уже добавил расширение XDEBUG в Chrome

Вот мой Lanch. Json:

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

И в моем php .ini у меня есть это в конце:

[xdebug]
zend_extension="c:/wamp64/bin/php/php7.2.25/zend_ext/php_xdebug-2.8.0-7.2-vc15-x86_64.dll"
xdebug.remote_enable =1
xdebug.profiler_enable =1
xdebug.profiler_enable_trigger =1
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir ="c:/wamp64/tmp"
xdebug.show_local_vars=0
xdebug.default_enable=1
xdebug.remote_host=127.0.0.1
xdebug.remote_port=8000
...