標籤:
1.使用phpinfo();查看php版本資訊
2.配置xdebug
2.1 根據php版本資訊,下載對應的xdebug .
2.2將下載的php_xdebug-2.1.2-5.3-vc6.dll檔案放到php安裝目錄下面ext目錄中。
2.3在php.ini中添加如下配置:
[xdebug]zend_extension = "D:/LAMP/PHP535/ext/php_xdebug-2.1.2-5.3-vc6.dll"xdebug.remote_enable=1xdebug.remote_handler=dbgpxdebug.remote_host=127.0.0.1xdebug.remote_port=9000xdebug.remote_mode=reqxdebug.idekey=matasxdebug.remote_log="d:\temp\xdebug\xdebug.log"xdebug.show_exception_trace=0xdebug.show_local_vars=9xdebug.show_mem_delta=0xdebug.trace_format=0xdebug.profiler_enable = 1xdebug.profiler_output_dir ="d:\temp\xdebug"
2.4 重啟apache伺服器,通過phpinfo();查看是否有xdebug相關輸出資訊。
3.配置DBGp外掛程式
3.1 下載最新版的DBGp外掛程式 https://sourceforge.net/projects/npp-plugins/files/DBGP%20Plugin/
3.2 將解壓得到的dll檔案拷貝到 NotePad++安裝目錄下的plugins目錄裡,然後重新開啟NotePad++。
3.3 在“外掛程式”功能表列下將會出現 DBGp子功能表,選擇config ,進入配置。
IDE KEY 和 php.ini中的xdebug.idekey配置一樣。
3.4 開啟 外掛程式->DBGp->Debugger
點擊紅點,會在游標所在行添加斷點。
3.5 在要調試的頁面URL後添加 ?XDEBUG_SESSION_START=session_name
例如: http://localhost/test.php?XDEBUG_SESSION_START=abcd
參考:http://thecancerus.com/debugging-php-using-xdebug-and-notepad-part-i/
NotePad++ 使用 DBGp 調試php