php程式效能分析工具

來源:互聯網
上載者:User
平常開發一些效率要求比較高的功能模組時,常常需要剖析器的運行瓶頸在哪。用下面這個工具可以很方便的查看PHP的指令碼執行過程。下面是配置步驟:

1. PHP安裝XDEBUG,網上很多教程,下面貼上php.ini中的配置項

[xdebug]

zend_extension=/usr/local/php54/lib/php/extensions/no-debug-non-zts-20100525/xdebug.so

xdebug.profiler_output_dir="/mnt/hgfs/web/log/xdebug"

xdebug.profiler_output_name = "cachegrind.out.%t-%s"

xdebug.remote_autostart = On

xdebug.remote_enable = On

xdebug.profiler_enable_trigger=1

xdebug.remote_host="127.0.0.1"

xdebug.remote_port=9000

xdebug.remote_handler="dbgp"

xdebug.remote_mode=req

這樣配置後,平常執行php程式並不會產生效能調試檔案,只有在url的尾碼加上url參數 XDEBUG_PROFILE=1 才會產生調試檔案。調試檔案在 xdebug.profiler_output_dir 這個參數配置的路徑中。

2. 安裝解析調試檔案的工具 qcachegrind

下載地址:http://sourceforge.net/projects/qcachegrindwin/

開啟 qcachegrind,選擇前面產生的調試檔案開啟即可查看。

其實有好幾個這種類型的工具,這個是我用過覺得比較直接明了的。

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.