1. 程式人生 > >PhpStorm配置XDebug除錯PHP

PhpStorm配置XDebug除錯PHP

1 PHP配置

2 配置 XDebug

路徑:File Settings Languages & Frameworks > PHP Debug

phpstrom-debug-02.png

3 配置 Server

路徑:File Settings Languages & Frameworks PHP Servers

phpstrom-debug-01.png

其中,Host 是除錯時瀏覽器訪問的域名。

注意:如果所謂的“遠端伺服器”就在本地的話,就不需要勾選“Use path mappings(select if the servers is remote or

symlinks are used)

4 設定除錯項

選擇選單 Run Edit Configurations,彈出“Run/Debug Configrations”對話方塊:

phpstrom-debug-03.png

phpstrom-debug-04.png

5 開始除錯頁面

Shift + F9,或選單選擇 Run Debug 除錯名稱,開啟除錯。

phpstrom-debug-06.png

特別說明下:

如果選擇了 Run Start Listening for PHP Debug connections,則PHPStorm會監聽瀏覽器,如果瀏覽器訪問第4步的"Start Url",那麼PHPStorm會自動跳轉到斷點處。點選除錯按鈕,一步一步除錯吧!

常用的幾個快捷鍵:

  • F7:步入
  • F8:跳過
  • Shift + F8:步出
  • Alt + F9:調到游標處

所有快捷鍵最好從 Run 選單下檢視。

參考資料: