標籤:php xdebug
最近有小夥伴問我如何安裝 xdebug ,想了想決定寫篇博文,讓小夥伴們自己看好了。
說明:開發環境為windows
首先 輸出 phpinfo(); 複製內容到 http://www.xdebug.org/find-binary.php
這一步其實就是 xdebug 官方幫你確定你的php開發版本 。
接著在彈出頁面下載相應 dll 檔案,按照他的提示複製到相應位置即可 通常為php的ext擴充檔案夾
最後開啟你的php.ini 輸入以下內容
;載入xdebug擴充zend_extension = .\ext\php_xdebug-2.5.0-5.6-vc11-nts.dll[Xdebug] ;是否開啟自動跟蹤 xdebug.auto_trace = On ;是否開啟異常跟蹤 xdebug.show_exception_trace = On ;是否開啟遠端偵錯自動啟動 xdebug.remote_autostart = On ;是否開啟遠端偵錯 xdebug.remote_enable = On ;允許調試的用戶端IP xdebug.remote_host=localhost ;遠端偵錯的連接埠(預設9000) xdebug.remote_port=9000 ;調試外掛程式dbgp xdebug.remote_handler=dbgp ;是否收集變數 xdebug.collect_vars = On ;是否收集傳回值 xdebug.collect_return = On ;是否收集參數 xdebug.collect_params = On ;跟蹤輸出路徑 xdebug.trace_output_dir="d:\xdebug" ;是否開啟調試內容 xdebug.profiler_enable=On ;調試輸出路徑 xdebug.profiler_output_dir="d:\xdebug"
更多的Xdebug配置選項說明,請參考官網的Xdebug配置選項說明。
OK 最後一步到了
第二步,開啟netbeans,在工具-選項-php-調試框內,把調試器連接埠寫成和php.ini內xdebug.remote_port一致,點擊應用-確定。
windows 下 PHP Xdebug 安裝