搞了一小時才配置成功,中間有些操作怕回頭記不清了,在這裡記錄一下。
配置laradock
的.env
檔案配置php-fpm
安裝xdebug
依賴;
...
PHP_FPM_INSTALL_XDEBUG=true
...
配置php-fpm
的xdebug
配置檔案/laradock/php-fpm/xdebug.ini
;
## 如果是 win 則是 docker.for.win.localhost
## 也可以配置成 host.docker.internal 我在 mac 下測試也可以 win 沒測試
xdebug.remote_host=docker.for.mac.localhost
xdebug.remote_connect_back=0
xdebug.remote_port=9000
xdebug.idekey=PHPSTORM
xdebug.remote_autostart=1
xdebug.remote_enable=1
xdebug.cli_color=0
xdebug.profiler_enable=0
xdebug.profiler_output_dir="~/xdebug/phpstorm/tmp/profiling"
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.var_display_max_children=-1
xdebug.var_display_max_data=-1
xdebug.var_display_max_depth=-1
重新構建laradock php-fpm
;
$ docker-compose up -d --build php-fpm
配置專案在vscode
下的launch.json
檔案;
{
"version": "0.2.0",
"configurations": [
{
"name": "Listen for XDebug",
"type": "php",
"request": "launch",
"port": 9000,
"log": true,
"pathMappings": {
"/var/www/專案在 workspace 下的絕對地址": "${workspaceRoot}",
}
},
{
"name": "Launch currently open script",
"type": "php",
"request": "launch",
"program": "${file}",
"cwd": "${fileDirname}",
"port": 9000
}
]
}
然後就可以愉快的debug
了。
本作品採用《CC 協議》,轉載必須註明作者和本文連結