ubuntu& phpstorm & xdebug 除錯 php

大飛_dafei發表於2018-10-17

前面已經寫了其他環境的配置,這裡只做簡單介紹:

sudo apt-get install php-xdebug

php -v 後顯示如下:

 在 /etc/php/7.0/mods_availabel 下會增加 xdebug.ini ,編輯這個檔案;新增 如下內容:

 

xdebug.idekey="PHPSTORM"
xdebug.remote_handler = "dbgp"
xdebug.remote_mode = "req"
xdebug.remote_host=127.0.0.1
xdebug.remote_enable=on
xdebug.remote_port = 9001   //這是設定埠 可以改 只要下面這是phpstorm 一致就可以 
xdebug.remote_autostart = no

 重啟PHP : /etc/init.d/php7.0-fpm restart 

其他phpstorm配置,請參照之前寫的

其他參考地址

相關文章