一、先到http://pecl.php.net/package/xdebug?下载对应版本的xdebug,我本机用的php study,下载的是2.6的稳定版。
二、配置php.ini
?本来没有加 remote_autostart,我滴妈呀,整了好久。一定要加上。
[XDebug]
xdebug.remote_enable = 1
xdebug.remote_autostart = 1
xdebug.remote_host= 10.64.130.19
xdebug.remote_port = 9000
xdebug.profiler_output_dir="e:\phpStudy\PHPTutorial\tmp\xdebug"
xdebug.trace_output_dir="e:\phpStudy\PHPTutorial\tmp\xdebug"
zend_extension="E:\phpStudy\PHPTutorial\php\php-7.1.13-nts\ext\php_xdebug.dll"
三、vscode下载安装php-debug。
四、vscode 文件--配置--首选项,搜索 set, 在setting.json中编辑,添加
"php.validate.executablePath": "E:\\phpStudy\\PHPTutorial\\php\\php-7.1.13-nts\\php.exe",
四、配置launch.json文件。
{
"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
}
]
}
OK了,齐活!
?
|