php性能监测模块XHProf简介
什么是XHProf?它是一个分层下面
4.cd xhprof-0.9.2/extension
5./usr/local/php/bin/phpize
6../configure --enable-xhprof --with-php-config=/usr/local/php/bin/php-config
7.make && make install
wget
tar zxvf xhprof-0.9.2.tgz
cp ./xhprof-0.9.2.tgz ./www //xhprof自身带有一个web版的分析页面,放到我的web服务器下面
cd xhprof-0.9.2/extension
/usr/local/php/bin/phpize
./configure --enable-xhprof --with-php-config=/usr/local/php/bin/php-config
make && make install2,配置
查看复制打印?
1.[xhprof]
2. extension=xhprof.so
3. xhprof.output_dir=/home/zhangy/xhprof //如果不加存放目录的话,默认是放在/tmp下面
[xhprof]
extension=xhprof.so
xhprof.output_dir=/home/zhangy/xhprof //如果不加存放目录的话,默认是放在/tmp下面三,XHProf测试
前面我们说过了,XHProf自身带有一个web版的测试工具,里面还有一个小例子。看一下这个例子,我做了一点修改和注释
查看复制打印?
1.<?php
2.function bar($x) {
3. if ($x > 0) {
4. bar($x -1);
5. }
6.}
7.function foo() {
8. for ($idx = 0; $idx < 5; $idx++) {
9. bar($idx);
10. $x = strlen("abc");
11. }
12.}
13.
14.//启动xhprof
15.xhprof_enable(XHPROF_FLAGS_CPU + XHPROF_FLAGS_MEMORY);
16.
17.//调用foo函数,也是我们要分析的函数
18.foo();
19.
20.//停止xhprof
21.$xhprof_data = xhprof_disable();
22.
23.//取得统计数据
24.print_r($xhprof_data);
25.
26.$XHPROF_ROOT = realpath(dirname(__FILE__) . '/..');
27.include_once $XHPROF_ROOT . "/xhprof_lib/utils/xhprof_lib.php";
28.include_once $XHPROF_ROOT . "/xhprof_lib/utils/xhprof_runs.php";
29.
30.//保存统计数据,生成统计ID和source名称
31.$xhprof_runs = new XHProfRuns_Default();
32.$run_id = $xhprof_runs->save_run($xhprof_data, "xhprof_foo"); //source名称是xhprof_foo
33.
34.//弹出一个统计窗口,查看统计信息
35.echo "<script language='javascript'>window.open('../xhprof_html/index.php?run=" . $run_id . "&source=xhprof_foo');</script>";
36.?>
<?php
function bar($x) {
if ($x > 0) {
bar($x -1);
}
}
function foo() {
for ($idx = 0; $idx < 5; $idx++) {
bar($idx);
$x = strlen("abc");
}
}
//启动xhprof
xhprof_enable(XHPROF_FLAGS_CPU + XHPROF_FLAGS_MEMORY);
//调用foo函数,也是我们要分析的函数
foo();
//停止xhprof
$xhprof_data = xhprof_disable();
//取得统计数据
print_r($xhprof_data);
$XHPROF_ROOT = realpath(dirname(__FILE__) . '/..');
include_once $XHPROF_ROOT . "/xhprof_lib/utils/xhprof_lib.php";
include_once $XHPROF_ROOT . "/xhprof_lib/utils/xhprof_runs.php";
//保存统计数据,生成统计ID和source名称
$xhprof_runs = new XHProfRuns_Default();
$run_id = $xhprof_runs->save_run($xhprof_data, "xhprof_foo"); //source名称是xhprof_foo
//弹出一个统计窗口,查看统计信息
echo "<script language=''>window.open('../xhprof_html/index.php?run=" . $run_id . "&source=xhprof_foo');</script>";
?>以下是部分的结果:
查看复制打印?
1.[foo==>bar] => Array
2. (
3. [ct] => 5 //bar()这个函数被调用了5次
4. [wt] => 63 //每次运行bar()所要的时间,不知道这个是不是平均值
5. [cpu] => 0 //每次运行bar(),cpu运算时间
6. [mu] => 2860 //每次运行bar(),php所使用内存的改变
7. [pmu] => 0 //每次运行bar(),php在内存使用最高峰时,所使用内存的改变
8. )
[foo==>bar] => Array
(
[ct] => 5 //bar()这个函数被调用了5次
[wt] => 63 //每次运行bar()所要的时间,不知道这个是不是平均值
[cpu] => 0 //每次运行bar(),cpu运算时间
[mu] => 2860 //每次运行bar(),php所使用内存的改变
[pmu] => 0 //每次运行bar(),php在内存使用最高峰时,所使用内存的改变
)个人觉得,这个工具是给变态人用的,有谁真正测试过,php代码执行效率?我估计没有,只要不随心所欲的写代码,差别不是很大,花时间在上面,还不如想想怎么提高数据库的处理能力。如果自认为其他方面都做的很好了,在这方面做做也没关系。
更详细请参考:#introduction