Xdebug是一個開放源代碼的PHP程序調試器(即一個Debug工具),能夠用來跟蹤,調試和分析PHP程序的運行情況。php
Xdebug官方網站:http://xdebug.org/nginx
將下載的xdebug.dll庫拷貝到%PHP_HOME%/ext目錄,而後打開php.ini文件添加以下配置:
[XDebug]
xdebug.profiler_append = 0
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_dir ="D:phpStudytmpxdebug"
xdebug.trace_output_dir ="D:phpStudytmpxdebug"
xdebug.profiler_output_name = "cache.out.%t-%s"
xdebug.remote_enable = 1
xdebug.remote_mode = "req"
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "127.0.0.1"
xdebug.remote_port = 9001
xdebug.idekey="PHPSTORM"
xdebug.remote_autostart = no
zend_extension="D:phpStudyphp55nextxdebug.dll"windows
上面下載的dll庫放置位置不是固定,只要在php.ini配置文件中準確指定便可,即zend_extension配置項指向dll庫文件。
這一部分關於Xdebug的配置是很複雜的,這裏只是簡單地配置了一下,詳細配置能夠查閱相關資料。
Xdebug所有可用配置可參考官方的一個連接:http://xdebug.org/docs/all_se...瀏覽器
服務器配置完成後,須要對PHPStorm做一些設置,使其可以監聽到瀏覽器的請求。服務器
Host指的是http服務器上配置的項目的訪問域名,我本地nginx配置的是test.yii.com,用的是默認的80端口
app
Debug port 填寫的是上文中,php.ini配置文件當中xdebug.remote_port那一項的值
yii
IED key填寫的值是php.ini文件中xdebug.idekey的值,Host、Port是File>Settings>PHP>Servers中設定的Host、Port值
ide
點擊左上角加號,選擇PHP Web Application
工具
建議使用Chrome瀏覽器,安裝 xdebug helper插件, 下載好以後點選項,IDE選PHPSTORM
網站
例如在控制器SiteController中新建一個actionTest方法,瀏覽器中應該訪問url是http://test.yii.com/index.php...
訪問該url,界面切換到phpStorm調試界面
在調試界面下,能夠看到變量信息