我使用的是lnmp环境,默认情况下9000
端口被php-fpm
占用,所以把xdebug
监听的端口修改为9090
,并把vscode
的launch.json
里面的端口也对应修改为9090
,即可!
在php.ini
的xdebug
节下添加如下代码
[XDebug]
zend_extension = 'xdebug.so'
xdebug.remote_enable =1
xdebug.remote_autostart = 1
xdebug.remote_port = 9090
//launch.json
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Listen for XDebug",
"type": "php",
"request": "launch",
"port": 9090
},
{
"name": "Launch currently open script",
"type": "php",
"request": "launch",
"program": "${file}",
"cwd": "${fileDirname}",
"port": 9090
}
]
}
网友评论