我正在尝试使用 VSCode 在我的 XAMPP 上进行调试,但没有成功。我知道有很多关于这个的问题,我已经尽我所能但仍然无法工作。
关于我的 xdebug 扩展,你真的有一件奇怪的事情。我目前正在使用 PHP v7.4.12 和 Xdebug 版本 3。
我知道我的 Xdebug 可以在 PHP 上运行,因为我查看过phpinfo()
它并显示了我是如何设置它的。奇怪的部分通常是许多教程中的一部分,zend_extension = path..
应该足够了,但是当我查看 phpinfo 时,如下所示:xdebug.remote_enable = 1
xdebug.remote_autostart = 1
我试图设置它,xdebug.remote_port = 9000
但xdebug.remote_host = "localhost"
仍然无法正常工作。我什至读过有关将 localhost 更改为127.0.0.1
但仍然无效的信息。
任何帮助,将不胜感激。这是我的 launch.json 文件和 php ini 文件。
php.ini
zend_extension = "C:\xampp\php\ext\php_xdebug.dll"
xdebug.remote_enable = 1
xdebug.remote_autostart = 1
xdebug.remote_log = "C:\xampp\tmp\xdebug\xdebug.log"
xdebug.remote_port = 9000
xdebug.remote_host = "127.0.0.1"
xdebug.idekey=VSCODE
启动.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": "Launch current script in console",
"type": "php",
"request": "launch",
"program": "${file}",
"cwd": "${fileDirname}",
"externalConsole": false,
"port": 9000
},
{
"name": "Listen for Xdebug",
"type": "php",
"request": "launch",
"port": 9000
}
]
}
如果它可能是由于没有设置“pathMappings”引起的,任何人都可以教我如何使用它?
顺便说一下 xdebug.log 也不起作用