Xdebug не работает в коде Visual Studio - PullRequest
0 голосов
/ 26 декабря 2018

Я не могу отладить свой PHP-код с помощью Xdebug.

Я следовал инструкциям на странице https://xdebug.org/wizard.php,, но у меня это не работает!

php.ini:

[xdebug]
zend_extension = E:\wamp64\bin\php\php7.2.4\ext\php_xdebug-2.6.1-7.2-vc15-x86_64.dll
xdebug.remote_autostart=1
xdebug.remote_enable=1
xdebug.remote_connect_back = 1
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 1
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir =E:\wamp64\tmp

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

Я установил все плагины для Visual, но это не работает.Я не знаю почему !!

...