VS Code 调试PHP

1. 打开http://www.xdebug.org/download.php下载相应的版本得到一个dll文件(如果原来有就不用下载了)

 

 

 

2.将下载的dll文件放到相应的目录中。比如我的就放D:\phpstudy_pro\Extensions\php\php7.3.4nts\ext下面;

 

 

3.然后修改php.ini,找到你对应php版本目录下的php.ini,将[XDebug]的内容进行修改,将zend_extension目录 修改为你的xdebug的dll的路径

 

[XDebug]
xdebug.remote_enable = 1
xdebug.remote_autostart = 1
zend_extension="D:\phpstudy_pro\Extensions\php\php7.3.4nts\ext\php_xdebug.dll"

 

 4.重启apache然后运行phpinfo()函数确认是否安装成功。如果phpinfo里有xdebug就说明php的xdebug配置成功了。

 

 

5、配置vs code

vs code里有php debug插件,只要安装就好,

安装好后就要设置php.exe的路径

文件->首选项->设置->扩展->php->validate:executable path

 

 

添加php.ext的执行路径:

"php.validate.executablePath": "D:\\phpstudy_pro\\Extensions\\php\\php7.3.4nts\\php.exe"
 

 

 

posted @ 2019-12-31 17:18  twelvezuo  阅读(308)  评论(0编辑  收藏  举报