Xdebug是php調試的好幫手,sublime是php編寫的好幫手。這裡只說如何配置,預設讀者會用sublime text和Xdebug
安裝Xdebug
Ubuntu下安裝:Ubuntu 12.04下安裝配置PHP調試工具Xdebug
Windows下安裝:PHP利-Xdebug的使用調試工具Xdebug的簡單介紹
在PHP設定檔phpl.ini中xdebug需要開啟remote_enable:
xdebug.remote_enable = on
否則Xdebug Client就無法正常運作。
配置Sublime Text
要調試某一個項目,首先得把這個項目在sublime下保存成一個project:
sublime->project->save project as ...
然後用package control安裝Xdebug Client:
Ctrl+Shift+P->PCI->Xdebug Client
sublime->project->edit poject
{ "folders": [ { "follow_symlinks": true, "path": "." } ], "settings": { "xdebug": { "url": "http://my.local.website/", } } }
xdebug->Add/Remove breakpoint