您現在的位置是:網站首頁>PHP實例詳解使用XHProf查找PHP性能瓶頸

實例詳解使用XHProf查找PHP性能瓶頸

宸宸2024-03-23PHP53人已圍觀

給尋找編程代碼教程的朋友們精選了PHP相關的編程文章,網友易同濟根據主題投稿了本篇教程內容,涉及到XHProf、PHP、性能瓶頸、使用XHProf查找PHP性能瓶頸的實例相關內容,已被340網友關注,如果對知識點想更進一步了解可以在下方電子資料中獲取。

使用XHProf查找PHP性能瓶頸的實例

XHProf是facebook 開發的一個測試php性能的擴展,本文記錄了在PHP應用中使用XHProf對PHP進行性能優化,查找性能瓶頸的方法。

一、安裝Xhprof擴展

//github上下載https://github.com/facebook/xhprof
unzip xhprof-master.zip 
cd xhprof-master/extension/
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config --enable-xhprof
make && make install

二、脩改php.ini

[xhprof]
extension=xhprof.so
xhprof.output_dir=/tmp

配置中xhprof.output_dir指定了生成的profile文件存儲的位置,我們將其指定爲/tmp。

三、將相關文件移動項目中

//xhprof下載壓縮包中的xhprof_html和xhprof_lib
cp -r xhprof-master/xhprof_html /usr/local/nginx/html/xhprof/
cp -r xhprof-master/xhprof_lib /usr/local/nginx/html/xhprof/

配置一個域名,瀏覽器可以訪問到 http://will.com/xhprof/xhprof_html/index.php

server{
 listen 80;
 server_name will.com;
 location / {
  root /usr/local/nginx/html;
  index index.html;
 }
 location ~ \.php$ {
  root html;
  fastcgi_pass 127.0.0.1:9000;
  fastcgi_index index.php;
  fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  include  fastcgi_params;
 }
 }

四、安裝graphivz

//需要安裝graphviz否則查看性能圖片時候會報failed to execute cmd: " dot -Tpng". stderr: `sh: dot: command not found '
yum -y install graphviz

五、編寫測試文件

//入口文件的開始位置
xhprof_enable(XHPROF_FLAGS_MEMORY | XHPROF_FLAGS_CPU);

業務邏輯...

//業務邏輯結束後
$xhprof_data = xhprof_disable();
include_once "/usr/local/nginx/html/xhprof/xhprof_lib/utils/xhprof_lib.php"; 
include_once "/usr/local/nginx/html/xhprof/xhprof_lib/utils/xhprof_runs.php"; 
$objXhprofRun = new XHProfRuns_Default();//數據會保存在php.ini中xhprof.output_dir設置的目錄去中 
$run_id = $objXhprofRun->save_run($xhprof_data, "test");

完整代碼示例(隨機滿減紅包demo)

<?php
xhprof_enable(XHPROF_FLAGS_MEMORY | XHPROF_FLAGS_CPU);
function show($info)
{
 echo "<pre>";
 print_r($info);
}

//不作數據校騐
$rules = array(
 2=>array('min'=>1, 'max'=>10, 'chance'=>30),//金額:分 概率:百分之(默認爲100%,不足100%按第一档計算)
 array('min'=>11, 'max'=>25, 'chance'=>60),
 array('min'=>26, 'max'=>50, 'chance'=>10),
 array('min'=>50, 'max'=>80, 'chance'=>0),
 array('min'=>80, 'max'=>100, 'chance'=>0),
);
$total_money = 10000;//紅包縂金額
$res = array();
while($total_money>0)
{
 $index = getLevel($rules);
 $money = setMoney($rules, $index);
 if ($money > $total_money)//金額不足
 {
 $money = $total_money;
 $total_money = 0;
 } else {
 $total_money -= $money;
 }
 $res[] = ($index+1)."---".$money;
}
echo show($res);
echo $total_money . "<br/>";
//1.先確定档次
function getLevel($rules)
{
 $level = array();
 $chance = 0;
 foreach($rules as $k=>$v)
 {
 if ($v['chance']>0)
 {
  $chance += $v['chance']*100;//擴大100倍
  $level[$k] = $chance;
 }
 }
 $index = 0;
 $rand_num = mt_rand(1, 10000);
 foreach($level as $k=>$v)
 {
 if ($rand_num <= $v)
 {
  $index = $k;
  break;
 }
 }
 return $index;
}
//2.確定档次之後,再確定金額
function setMoney($rules, $index)
{
 $money = mt_rand($rules[$index]['min']*10000, $rules[$index]['max']*10000)/10000;
 $money = ceil($money);
 $money > 1 && $money = $money -1;//防止出現免單情況
 return $money;
}
$xhprof_data = xhprof_disable();
include_once "/usr/local/nginx/html/xhprof/xhprof_lib/utils/xhprof_lib.php"; 
include_once "/usr/local/nginx/html/xhprof/xhprof_lib/utils/xhprof_runs.php"; 
$objXhprofRun = new XHProfRuns_Default();//數據會保存在php.ini中xhprof.output_dir設置的目錄去中 
$run_id = $objXhprofRun->save_run($xhprof_data, "test");
echo "http://will.com/xhprof/xhprof_html/index.php?run=$run_id&source=test";//變量$runId是本次請求生成分析結果的id,最後我們輸出了一個鏈接地址,使用改地址就可以看到本次請求的分析結果。

六、查看分析結果

先運行業務代碼;

然後瀏覽器打開 http://will.com/xhprof/xhprof_html/index.php, 點擊最後一次生成xhprof文件

使用XHProf查找PHP性能瓶頸的實例

注意到中間的View Full Callgraph鏈接,通過該鏈接我們可以看到圖形化的分析結果

使用XHProf查找PHP性能瓶頸的實例

圖中紅色的部分爲性能比較低,耗時比較長的部分,我們可以根據根據哪些函數被標記爲紅色對系統的代碼進行優化

另外附上, xhprof報告字段含義:

Function Name:方法名稱。

Calls:方法被調用的次數。

Calls%:方法調用次數在同級方法縂數調用次數中所佔的百分比。

Incl.Wall Time(microsec):方法執行花費的時間,包括子方法的執行時間。(單位:微秒)

IWall%:方法執行花費的時間百分比。

Excl. Wall Time(microsec):方法本身執行花費的時間,不包括子方法的執行時間。(單位:微秒)

EWall%:方法本身執行花費的時間百分比。

Incl. CPU(microsecs):方法執行花費的CPU時間,包括子方法的執行時間。(單位:微秒)

ICpu%:方法執行花費的CPU時間百分比。

Excl. CPU(microsec):方法本身執行花費的CPU時間,不包括子方法的執行時間。(單位:微秒)

ECPU%:方法本身執行花費的CPU時間百分比。

Incl.MemUse(bytes):方法執行佔用的內存,包括子方法執行佔用的內存。(單位:字節)

IMemUse%:方法執行佔用的內存百分比。

Excl.MemUse(bytes):方法本身執行佔用的內存,不包括子方法執行佔用的內存。(單位:字節)

EMemUse%:方法本身執行佔用的內存百分比。

Incl.PeakMemUse(bytes):Incl.MemUse峰值。(單位:字節)

IPeakMemUse%:Incl.MemUse峰值百分比。

Excl.PeakMemUse(bytes):Excl.MemUse峰值。單位:(字節)

EPeakMemUse%:Excl.MemUse峰值百分比。

以上這篇使用XHProf查找PHP性能瓶頸的實例就是小編分享給大家的全部內容了,希望能給大家一個蓡考,也希望大家多多支持碼辳之家。

我的名片

網名:星辰

職業:程式師

現居:河北省-衡水市

Email:[email protected]