php内容可阅读性检测,PHP性能检测扩展——XHProf

引言:XHProf是facebook开源出来的一个php轻量级的性能分析工具,跟Xdebug类似,但性能开销更低,还可以用在生产环境中,也可以由程序开 关来控制是否进行profile。

安装xhprof: wgethttp://pecl.php.net/get/xhprof-0.9.2.tgz tar zxf xhprof-0.9.2.tgz cd xhprof-0.9.2 cp -r xhprof_html xhprof_lib /www/www.hx.com/xhprof/ cd extension/ /usr/local/webserver/php/bin/phpize ./configure  –with-php-config=/usr/local/webserver/php/bin/php-config make && make install 安装完提示: Installing shared extensions:     /usr/local/webserver/php/lib/php/extensions/no-debug-non-zts-20060613/ php.ini中添加 extension_dir = "/usr/local/webserver/php/lib/php/extensions/no-debug-non-zts-20060613/" 这句我原来就有了,就这用添加下面两句 extension=xhprof.so xhprof.output_dir=/www/logs/xhprof 分析日志输出在/www/logs/xhprof目录。 重新加载php配置文件和重启web /usr/local/webserver/php/sbin/php-fpm reload /usr/local/webserver/nginx/sbin/nginx -s reload 刷新phpinfo页面,看到输出中有了xhprof信息。 xhprof  0.9.2 CPU num  2 安装graphviz,一个画图工具 wgethttp://www.graphviz.org/pub/graphviz/stable/SOURCES/graphviz-2.24.0.tar.gz tar zxf graphviz-2.24.0.tar.gz cd graphviz-2.24.0 ./configure make && make install 程序试例 头部: xhprof_enable(); //xhprof_enable(XHPROF_FLAGS_NO_BUILTINS); 不记录内置的函数 //xhprof_enable(XHPROF_FLAGS_CPU + XHPROF_FLAGS_MEMORY);  同时分析CPU和Mem的开销 $xhprof_on = true; 我觉得用xhprof_enable();就够用了,只统计运行时间(Wall Time)。 生产环境可使用: if (mt_rand(1, 10000) == 1) { xhprof_enable(); $xhprof_on = true; } 尾部: if($xhprof_on){ $xhprof_data = xhprof_disable(); $xhprof_root = '/www/www.hx.com/xhprof/'; include_once $xhprof_root."xhprof_lib/utils/xhprof_lib.php"; include_once $xhprof_root."xhprof_lib/utils/xhprof_runs.php"; $xhprof_runs = new XHProfRuns_Default(); $run_id = $xhprof_runs->save_run($xhprof_data, "hx"); echo '统计'; } 运行程序,底部出现统计字样,点过去就可以看到性能分析了。按运行时间排序,很容易找出化时间最长的函数。 点[View Full Callgraph]图形化显示,最大的性能问题会用红色标出,其次是×××,很明显。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值