PHP代码性能的分析方法
来源:易贤网 阅读:732 次 日期:2014-08-21 16:55:09
温馨提示:易贤网小编为您整理了“PHP代码性能的分析方法”,方便广大网友查阅!

php代码的性能分析。

你可以用xdbug去分析。

但是更好的选择是facebook的性能分析工具xhprof。

它可以图形化。前提是你安装了gd库,你也可能遇到一些小问题。我记得要更新linux的图像库。

安装xhprof扩展:pecl install xhprof .

<?php

/**

*

*

* Beck Confidential

* Copyright (c) 2013, Beck Corp. <Beck.Bi>.

* All rights reserved.

*

* PHP version 5

*

* @category Aug

* @package package_name

* @author beck

* @date 2013-8-13

* @license

* @link

*

*/

class Xhprof

{

protected $flags = 0;

protected $options = array();

protected $xhprofData = array();

/**

* 配置你的xhprof 你可以在php的官网看着个应用的说明

* @param unknown $config

* @throws ExtensionNotFoundException

*/

public function __construct($config = array())

{

if (!extension_loaded('xhprof')) {

throw new ExtensionNotFoundException(

'Configuration error! Make sure you have xhprof installed correctly.

please refer http://www.php.net/manual/en/xhprof.examples.php for detail.'

);

}

if (!empty($config['flags'])) {

$this->flags = (int)$config['flags'];

}

if (!empty($config['options'])) {

$this->options = $config['options'];

}

}

/**

* 开启调试

*/

public function enable()

{

xhprof_enable($this->flags, $this->options);

}

public function disable()

{

$this->xhprofData = xhprof_disable();

}

/**

*显示调试结果

* 你可能需要配置一个apache/nginx虚拟主机

*/

public function show()

{

$this->disable();

include_once "xhprof_lib/utils/xhprof_lib.php";

include_once "xhprof_lib/utils/xhprof_runs.php";

$xhprof_runs = new XHProfRuns_Default();

$run_id = $xhprof_runs->save_run($this->xhprofData, "xhprof_testing");

echo "<a href='http://pear.kang.com/xhprof_html/index.php?run={$run_id}&source=xhprof_testing' target='_blank'>see xhprof result</a>";

}

}

更多信息请查看IT技术专栏

更多信息请查看网络编程
易贤网手机网站地址:PHP代码性能的分析方法
由于各方面情况的不断调整与变化,易贤网提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!
关于我们 | 联系我们 | 人才招聘 | 网站声明 | 网站帮助 | 非正式的简要咨询 | 简要咨询须知 | 加入群交流 | 手机站点 | 投诉建议
工业和信息化部备案号:滇ICP备2023014141号-1 云南省教育厅备案号:云教ICP备0901021 滇公网安备53010202001879号 人力资源服务许可证:(云)人服证字(2023)第0102001523号
云南网警备案专用图标
联系电话:0871-65317125(9:00—18:00) 获取招聘考试信息及咨询关注公众号:hfpxwx
咨询QQ:526150442(9:00—18:00)版权所有:易贤网
云南网警报警专用图标