referer:http://www.javashuo.com/article/p-qgwtbqyb-ne.html
https://xdebug.org/download.phpphp
phpstorm+phpstudy 動態調試環境,phpstorm安裝參考:http://www.javashuo.com/article/p-zizinhbb-go.html
phpstudy2016自帶xdebug擴展,不過php.ini不大同樣,要對照着參數改改。瀏覽器
安裝phpstudy後,開啓php擴展 xdebug框架
對照修改php.iniphpstorm
[XDebug] xdebug.profiler_output_dir="D:\phpStudy\tmp\xdebug" xdebug.trace_output_dir="D:\phpStudy\tmp\xdebug" zend_extension="D:\phpStudy\php\php-5.6.27-nts\ext\php_xdebug.dll" xdebug.auto_trace=on xdebug.collect_params=on xdebug.collect_return=on xdebug.profiler_enable=on xdebug.remote_enable = on xdebug.remote_handler = dbgp xdebug.remote_host= 127.0.0.1 xdebug.remote_port = 9000 xdebug.idekey = PHPSTORM
安裝 phpstorm 和配置 有點繁瑣:ide
文件->設置->語言和框架->PHP功能的 project Configuraction url
默認在 PHP language level 中會自動選擇當前的php版本, CLI Interpreter 須要手工建立下,選擇下 php.exe 路徑:debug
文件->設置->語言和框架->PHP->debug 調試
文件->設置->語言和框架->PHP->debug->DBGp Proxy,這裏配置的和 php.ini 文件的主機和端口要一致,若是有衝突則換個端口code
而後導航欄裏面點 編輯結構->建立一個並配置server 就是當前http服務, 還有默認監聽的瀏覽器,以下:orm
輸入須要調試的url
而後點 第二個 藍色的 調試 按鈕, 就出來了。