phpstudy+Notepad+DBGp xdebug 除錯php
阿新 • • 發佈:2019-02-08
[XDebug] xdebug.profiler_append = 0 xdebug.profiler_enable = 1 xdebug.profiler_enable_trigger = 0 xdebug.profiler_output_dir ="D:\ruanjian\phpStudy\tmp\xdebug" xdebug.trace_output_dir ="D:\ruanjian\phpStudy\tmp\xdebug" xdebug.profiler_output_name = "cache.out.%t-%s" xdebug.remote_enable = 1 xdebug.remote_handler = "dbgp" xdebug.remote_host = "127.0.0.1" zend_extension="D:\ruanjian\phpStudy\php53\ext\xdebug.dll" xdebug.remote_port = 9000 xdebug.idekey = default
phpstudy 軟體 php53 裡 php.ini 修改如上
安裝DBGp 點選下載
一、安裝DBGPPlugin。將dbgpPlugin.dll解壓到Notepad++/plugins目錄即可。
二、配置DBGPPlugin。選單:外掛->DBgp->Config,彈出DBgp配置視窗,配置如下
使用DBGPPlugin進行除錯。
1)選單:外掛->DBgp->Config->Debugger,出現除錯視窗。
2)用notepad++開啟要除錯的php檔案,在瀏覽器中輸入地址並加上引數XDEBUG_SESSION_START=1如:http://localhost/index.php?XDEBUG_SESSION_START=1
3)此時如果發現工作列的Notepad++ 視窗閃爍,則說明DBGp配置成功。游標將會停留在第一行等待,此時可進行單步跟蹤了。