windows 下 PHP Xdebug 安裝

來源:互聯網
上載者:User

標籤: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 安裝

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.