您好,登錄后才能下訂單哦!
最近有小伙伴問我如何安裝 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一致,點擊應用-確定。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。