vscode 中 xdebug 调试

我自己的用的是phpstudy 先开启xdebug
在php扩展中开启就行
然后在vscode 中开启扩展 php debug 就可以了

image.png


xdebug.remote_enable = 1
xdebug.remote_autostart = 1
写到php.ini 中
在vscode 中写自己的php 执行路径
下面是我自己的路径
"php.validate.executablePath": "D:/phpstudy/php/php-5.6.27-nts/php.exe",
就可以了


但是有的时候 会发现 一直没有生效 可以去xdebug https://xdebug.org/download.php
去下一个新的版本来代替原来phpstudy 里面自带php_xdebug.dll 文件 就可以了

你可能感兴趣的:(vscode 中 xdebug 调试)