用xdebug的函數跟蹤功能測試網站效能

來源:互聯網
上載者:User

相信做php開發的朋友很多都認識xdebug,它確實是php開發過程中檢查錯誤與效能分析的好工具。本章將介紹它的一個蠻不錯的功能:函數跟蹤。它可以根據程式在實際運行時的執行順序,追蹤記錄所有函數的執行時間,以及函數調用時的上下文,包括實際參數和傳回值。 

要開啟xdebug的函數跟蹤功能,需要在php.ini中做一些設定。設定如下:
extension=php_xdebug.dll
[xdebug]
xdebug.auto_trace=on
xdebug.trace_options=1
xdebug.trace_output_dir="E:\web\server\tmp\xdebug\trace"
xdebug.trace_output_name=trace.%c

配置好了時候,重啟Apache,然後執行頁面就會在E:\web\server\tmp\xdebug\trace目錄下產生報告檔案。 

開啟報告檔案,格式類似如下:
0.0348     379272    -> dirname() E:\web\host\mysite.com\framework\Controller.php:27
0.0395     655712    -> require(E:\web\host\mysite.com\framework\smarty\Smarty.class.php) E:\web\host\mysite.com\framework\Controller.php:27   
0.0396     657784    -> defined() E:\web\host\mysite.com\framework\smarty\Smarty.class.php:37 
0.0396     657824    -> define() E:\web\host\mysite.com\framework\smarty\Smarty.class.php:38 
0.0397     657840    -> defined() E:\web\host\mysite.com\framework\smarty\Smarty.class.php:45 
0.0398     657864    -> dirname() E:\web\host\mysite.com\framework\smarty\Smarty.class.php:46
0.0399     657864    -> define() …………………………………………………………………………………………………………………………..………………………………………………………………………………………………………………………….. 
0.0206     300960    -> require_once(E:\web\host\mysite.com\app\protected\models\Test.php)
0.0209     300672    -> is_resource() E:\web\host\mysite.com\framework\Model.php:63   
0.0209     300672    -> Model->_connect() E:\web\host\mysite.com\framework\Model.php:63  
0.0210     301776    -> PDO->__construct() E:\web\host\mysite.com\framework\Model.php:71
0.0253     299736    -> Test->selectData() E:\web\host\mysite.com\app\protected\controllers\DefaultController.php:25   
0.0254     299896    -> Model->select() E:\web\host\mysite.com\app\protected\models\Test.php:43 

從報告中,可以看到require(E:\web\host\mysite.com\framework\smarty\Smarty.class.php)花了0.0047s,另外Test->selectData()函數花了0.0043秒,這兩個函數花的時間遠遠高於其他函數所花的時間,好了,有了這些報告,我們就知道可以從哪些地方最佳化網站效能了。

 

 

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.