给vscode配置php调试环境

使用工具与环境

  1. windows 10 64位
  2. vscode
  3. phpstudy(其他的类似

phpstudy

在php扩展中安装调试工具php xdebug

image.png

对使用的php的配置文件php.ini进行修改

打开Xdebug的远程调试,配置如下

image.png

xdebug.remote_enable=1 xdebug.remote_autostart = 1

xdebug.remote_port是调试端口,默认为9000

vscode

安装PHP Debug插件,设置phpxdebug的路径

php.validate.executablePath填写php.exe路径,php.debug.executablePath填写php_xdebug.dll的路径

image.png

打开vscode的工作目录,我选的是phpstudyWWW目录,保证调试文件在工作目录下

开启调试,并生成调试配置文件,保证端口与php.ini中xdebug的xdebug.remote_port一致

image.png