在php.ini文件中添加以下几行代码
旧版xdebug这样的:
xdebug.remote_enable = 1
xdebug.remote_autostart = 1
新版的xdebug3则这么写:
zend_extension=E:\work\study\php\ext\php_xdebug-3.0.0-7.4-vc15-nts-x86_64.dll ;dll文件自己百度搜
[XDebug]
xdebug.mode=debug
xdebug.start_with_request=yes
vscode安装插件"php debug",然后launch.json设置
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Listen for XDebug",
"type": "php",
"request": "launch",
//新版的xdebug3的默认端口是9003
"port": 9003
},
{
"name": "Launch currently open script",
"type": "php",
"request": "launch",
"program": "${file}",
"cwd": "${fileDirname}",
"port": 9003
}
]
}
重启nginx,大功告成!