服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|JavaScript|易语言|

服务器之家 - 编程语言 - PHP教程 - 使用XHProf查找PHP性能瓶颈的实例

使用XHProf查找PHP性能瓶颈的实例

2021-07-21 16:04w&y PHP教程

下面小编就为大家分享一篇使用XHProf查找PHP性能瓶颈的实例,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

xhprof是facebook 开发的一个测试php性能的扩展,本文记录了在php应用中使用xhprof对php进行性能优化,查找性能瓶颈的方法。

一、安装xhprof扩展

?
1
2
3
4
5
6
//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

?
1
2
3
[xhprof]
extension=xhprof.so
xhprof.output_dir=/tmp

配置中xhprof.output_dir指定了生成的profile文件存储的位置,我们将其指定为/tmp。

三、将相关文件移动项目中

?
1
2
3
//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

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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

?
1
2
//需要安装graphviz否则查看性能图片时候会报failed to execute cmd: " dot -tpng". stderr: `sh: dot: command not found '
yum -y install graphviz

五、编写测试文件

?
1
2
3
4
5
6
7
8
9
10
11
//入口文件的开始位置
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)

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?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性能瓶颈的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:http://www.cnblogs.com/573583868wuy/archive/2017/12/12/8030316.html

延伸 · 阅读

精彩推荐