linux下php調試工具xdebug安裝配置

xdebug簡介

Xdebug是php的一款調試工具,是基於zend的一個擴展,能夠用來跟蹤,調試和分析PHP程序的運行情況。如變量,函數調試,性能監測,代碼覆蓋率等php


xdebug安裝

1.下載xdebug源程序linux

git clone git://github.com/xdebug/xdebug.git
https://xdebug.org/download.php#releases

2.解壓xdebug包
tar -xzvf xdebug.tgzgit

3.進入解壓目錄
cd xdebuggithub

4.運行phpize
/usr/local/php/bin/phpizeweb

5.編譯
./configure --enable-xdebug --with-php-config=/usr/local/php/bin/php-config安全

6.安裝
make && make install函數

7.安裝成功後會在php擴展目錄生成相似xdebug.so的擴展工具

8.安裝xdebug客戶端xdebugclient (須要libedit擴展)性能

cd debugclient
./configure --with-libedit
make
make install

xdebug配置

1.在php.ini配置文件中添加以下內容
zend_extension="/wherever/you/put/it/xdebug.so"
2.若是是php5.3以前版本線程安全,添加以下內容代替上面1的內容
zend_extension_ts="/wherever/you/put/it/xdebug.so"
3.自從php5.3以後zend_extension_ts, zend_extension_debug再也不使用.net

4.xdebug的一些其餘配置

;顯示錯誤信息
xdebug.default_enable = 1

;函數調試
xdebug.auto_trace=on
xdebug.trace_output_dir
xdebug.trace_output_name
;Type: string, Default value: trace.%c
xdebug.collect_params = 1|3|4 (參數長度,參數值,參數=值)
xdebug.show_mem_delta=1 顯示內存
xdebug.collect_return=1 顯示返回值
xdebug.trace_options =1 追加日誌
xdebug.collect_params=1
xdebug.collect_vars = 1

;開啓性能分析
xdebug.profiler_enable=1
;性能分析日誌保存目錄
xdebug.profiler_output_dir = /data/logs/xdebug/
;性能分析日誌文件名稱
xdebug.profiler_output_name = cachegrind.out.log
;默認是以下格式,t時間,p進程id
;xdebug.profiler_output_name = cachegrind.out.%t.%p

;代碼覆蓋率
xdebug.coverage_enable = 1

;如下是遠程調試配置
xdebug.remote_host= 127.0.0.1
xdebug.remote_connect_back = 1
xdebug.remote_port = 9000
xdebug.remote_log="/data/logs/xdebug/xdebug.log"

4.重啓php使配置生效


性能分析日誌工具

1.linux平臺

工具KCacheGrind (Linux, KDE) https://kcachegrind.github.io/

2.win平臺查看工具WinCacheGrind

相關網址

http://ceefour.github.io/wincachegrind/
https://sourceforge.net/projects/wincachegrind/
https://github.com/ceefour/wincachegrind/releases/tag/1.1

列名稱含義

Self - Shows the execution time of the code in the current block

Cum. - Shows the total exuction time of functions that the current function (Self) calls

Avg vs. Total: Average is average time per call, Total is the total time spend in all calls.

3.Web方式查看webgrind

https://github.com/jokkedk/webgrind

相關文章
相關標籤/搜索