wsl for window环境通过vscode工具debug php的laravel框架项目
背景
php:7.2
宿主机环境:wsl for window
开发工具:vscode
步骤1:通过phpstudy配置php、xdebug
命令窗口执行
wget -O install.sh https://notdocker.xp.cn/install.sh && sudo bash install.sh
执行结束,自动给出地址,账户密码等信息,安装下图信息安装php、给安装的php配置xdebug
步骤2:通过phpstudy配置php.ini的xdebug环境
xdebug.remote_enable = 1
xdebug.remote_autostart = 1
xdebug.remote_port = 9000
步骤3:vscode配置环境
先下载php debug插件
配置vscode launch.json
{ "configurations": [ { "name": "Launch current script in console", "type": "php", "request": "launch", "program": "${file}", "cwd": "${fileDirname}", "externalConsole": false, "port": 9001 }, { "name": "Listen for XDebug", "type": "php", "request": "launch", "port": 9001 } ] }
在.env中添加两个代码
XDEBUG_MODE=debug
XDEBUG_SESSION=vscode
步骤4:开始debug
先点击debug
再脚本启动:
php artisan serve --env production
此时debug效果就有了