php xdebug 效能優化

2021-08-10 22:57:19 字數 1028 閱讀 5947

關於php**除錯就不再多說了。用過才知道爽!!!

之前寫過一邊配置,請檢視 關於xdebug配置

[xdebug]

zend_extension="/usr/local/opt/php71-xdebug/xdebug.so"

xdebug.auto_trace = on

xdebug.trace_output_dir = "/var/tmp/xdebug"

xdebug.profiler_output_dir = "/var/tmp/xdebug"

xdebug.profiler_enable=0

;是否開啟遠端除錯自動啟動

;關閉自動開啟除錯

xdebug.remote_autostart = 0

;是否開啟遠端除錯

xdebug.remote_enable = on

;允許除錯的客戶端ip

xdebug.remote_host=localhost

;遠端除錯的埠(預設9000)

xdebug.remote_port=9001

;除錯外掛程式dbgp

xdebug.remote_handler=dbgp

;是否收集變數

xdebug.collect_vars = on

;是否收集返回值

xdebug.collect_return = on

;是否收集引數

xdebug.collect_params = on

;是否開啟除錯內容

xdebug.profiler_enable=on

;設定php顯示的級別長度

xdebug.var_display_max_depth=10

xdebug.idekey = phpstorm

xdebug.remote_autostart = 0這是最重要的。關閉之後,使用google的外掛程式來喚醒ide的debug,可以解決在不使用debug的情況,避免等待時間

PHP XDebug擴充套件

xdebug 是乙個 php 的除錯工具,對程式設計師除錯程式有很大的幫助。很多php程式設計師除錯習慣使用echo print r var dump printf 等,但是 寫好了,能執行了,不代表它的質量就過關了。有時候 沒有明顯的編寫錯誤,沒有顯示任何錯誤資訊 如error warning n...

php xdebug安裝失敗

apache的錯誤日誌老出現 導致xdebug老是不能載入,試了好多版本的,可是都不行,最後搜到乙個解決方案 把phpinfo 的資訊拷貝到xdebug官網的乙個測試頁面 讓官網來測試我的環境找到合適的版本,這確實不錯哦 雖然不是warning documentroot d webserver ap...

mysql效能優化 mysql效能優化

優化方式 1.空間換時間 冗餘 2.時間換空間 字段優先使用型別 int date char varchar text 索引型別 btree索引 hash索引 索引的葉子下,存放乙個資訊指向所在行的資料位址。btree有利於範圍查詢,hash有利於精確查詢。btree用的更多一些。btree索引的常...