工具系列 | PHPStrom 2020 配合php-debug在Docker-compose 環境調試

1、本地安裝環境爲docker-compose 作爲PHP調試環境

 

 2、確保 php74 容器已經安裝好了xdebug擴展

 

 3、php.ini 配置文件(PHP7.4映射配置)

[XDebug]
xdebug.remote_enable = 1
xdebug.remote_handler = "dbgp"
; Set to host.docker.internal on Mac and Windows, otherwise, set to host real ip
xdebug.remote_host = host.docker.internal
xdebug.remote_port = 9000
xdebug.remote_log = /var/log/php/xdebug.log
; idekey value is specific to Visual Studio Code
xdebug.idekey=XDEBUG_ECLIPSE
; Optional: Set to true to always auto-start xdebug
xdebug.remote_autostart=true

4、PHPStrom 配置

 

 最後配置

 

 

 

 

 

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章