PHPStorm 配置XDebug 調試PHP代碼 詳細教程
【PHP配置】
為PHP安裝xdebug,方法略。
設定檔php.ini
[XDebug]
zend_extension = "C:\xampp\php\ext\php_xdebug.dll"
;開啟自動跟蹤
xdebug.auto_trace = On
;開啟異常跟蹤
xdebug.show_exception_trace = On
;開啟遠端偵錯自動啟動
xdebug.remote_autostart = On
;開啟遠端偵錯
xdebug.remote_enable = 1
;收集變數
xdebug.collect_vars = On
;收集傳回值
xdebug.collect_return = On
;收集參數
xdebug.collect_params = On
xdebug.trace_output_dir = "C:\xampp\tmp"
xdebug.profiler_append = 0
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_dir = "C:\xampp\tmp"
xdebug.profiler_output_name = "cachegrind.out.%t-%s"
xdebug.idekey=PhpStorm
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "127.0.0.1"
xdebug.remote_port = 9000
【phpstorm配置】
File>Settings>Languages&Frameworks>PHP>Servers
添加一個Server。
File>Settings>Languages&Frameworks>PHP>Debug
看到XDebug選項卡,port填9000,其他預設。
File>Settings>Languages&Frameworks>PHP>Debug>DBGp Proxy
IDE key 填 phpStorm,host 填localhost,port 填82。
瀏覽器設定(Firefox、Google使用另外的方式)
銜接 http://www.jetbrains.com/phpstorm/marklets,在左邊填上phpStorm,點generate,把下面的連結添加到收藏夾,方便調用。
Run>Edit Configurations
添加Web調試伺服器
啟動監聽
在phpstorm中設定斷點後,啟動監聽,就是電話一樣的表徵圖。用chrome瀏覽localhost中的指定斷點的檔案,會自動進入斷點,在phpstorm中看到調試資訊。