在 Eclipse 實現 PHP Debug

在程式開發過程中, 總會遇到複雜難解的問題時, 這時就會用到 debug,

以下, 介紹如何在 Eclipse 中, 建置 PHP Debug 環境,

參考步驟, 如下 :

1) 首先, 在 XAMPP Control Panel 中, 開啟 php.ini 設定檔 :


搜尋 [XDebug], 原本 Debug 功能是備註起來, 現在將備註拿掉, 然後重新啟動 Apache, 讓 Debug 功能生效 :


2) 在 Eclipse 中, 開啟 Preferences, 切換到 PHP / PHP Executables, 點選 "Add" 新增 :


Executable path 選擇 XAMPP_Home / php / php.exe,
PHP debugger 選擇 XDebug :


Preferences 切換到 PHP / Debug, 確認 PHP Executable 是否為剛才新增的設定名稱 :


3) 在 Eclipse 的 PHP 檔案, 按右鍵, 點選 Debug As / PHP CLI Application 執行 PHP :


當你一步一步執行時, 可以看到在 Console 畫面, 會將結果一步一步顯示出來 :


當你一步一步執行時, 可以看到在 Variables 畫面, 會將變數值一步一步進行變更 :


以上, 就可在 Eclipse 中方便用 Debug 進行偵測與除錯了, 對於往後開發很有幫助喔.


Related Posts Plugin for WordPress, Blogger...