xdebug的使用與配置引數

2021-06-25 21:12:52 字數 592 閱讀 9629

xdebug.auto_trace=off 這個一般是要關掉的,會自動產生很多跟蹤檔案

xdebug.remote_enable=0 這個也是要關掉的,有時候php會很慢

xdebug.remote_handle=dbgp

xdebug.remote_mode=req

xdebug.collect_params=4 這個會在跟蹤檔案中每一步都把引數補齊,便於檢視邏輯

xdebug.remote_port=9000

xdebug.remote_host = 127.0.0.1

xdebug.remote_log=/var/log/xdebug.log

xdebug.trace_out_dir=/trace

xdebug.profiler_output_dir=/profiler

xdebug.trace_output_name=trace.%c

xdebug.profiler_output_name=profiler.%c

php中用xdebug_start_trace();&& xdebug_stop_trace();函式跟蹤,然後去檔案裡檢視跟蹤記錄。比按f5更易操作些,個人感覺!!!

Xdebug基本配置引數

以下是我在 xdebug官方documention裡閱讀並翻譯的。本人英語水平有限,如果有錯誤還望指望。相關引數 1.xdebug.default enable 1 引數型別boolean,預設值為1 當設定為1,堆疊跟蹤缺省會顯示乙個錯誤事件。你可以在單個頁面上禁用xdebug,只需使用xdebu...

xdebug 的使用和配置

編輯器使用vscode 注意 修改php.ini xdebug 擴張的絕對路徑 zend extension usr local php lib php extensions no debug non zts 20160303 xdebug.so xdebug 監聽埠 xdebug.remote p...

xdebug安裝與配置

今天用了很長的時間來研究和配置xdebug,網上只言片語說了好多關於安裝和配置的文章,但是沒有任何乙個能夠全面介紹,導致我遇到的問題都無法解決,最後終於在一位非常不錯的朋友的幫助下,解決了問題,現就我在安裝和配置xdebug的過程中遇到的問題以及解決方案進行簡單整理。xdebug是開發php過程中非...