一、小皮面板点击配置php.ini
二、vscode下载PHP Debug
vscode里搜索扩展PHP Debug。
三、vscode配置php.exe的应用程序路径。
四、 配置php.ini 中的 xdebug
五、开启远程调试;
配置端口;
xdebug.remote_enable = 1
xdebug.remote_autostart = 1
xdebug.remote_port = 9003
六、运行调试,自动生成创建 launch.json
1、创建 launch.json
点击创建然后输入php直接选择出现列表里的第一个。如上图。
2、重启apache服务器,然后打开个网站目录下 phptext里的php文件运行调试。