Benchmarking类库,它是被系统自动被加载的,不需要手工加载
class CI_Benchmark { /** * List of all benchmark markers * * @var array */ public $marker = array(); /** * 标记时间点 */ public function mark($name) { $this->marker[$name] = microtime(TRUE); } // -------------------------------------------------------------------- /** * 计算两个标记点之间的时间差 * */ public function elapsed_time($point1 = '', $point2 = '', $decimals = 4) { if ($point1 === '') { return '{elapsed_time}'; } if ( ! isset($this->marker[$point1])) { return ''; } if ( ! isset($this->marker[$point2])) { $this->marker[$point2] = microtime(TRUE); } return number_format($this->marker[$point2] - $this->marker[$point1], $decimals); } // -------------------------------------------------------------------- public function memory_usage() { return '{memory_usage}'; } }
Benchmarking类库能够计算出任意两个被标记点之间的代码执行时间。通过这个数值,可以评估程序员编写的程序的效率。
另外,当CodeIgniter框架被调用时,系统会调用Benchmark类库中的方法,以计算出Output类库将所有内容正确的发送至浏览器所执行的时间。
可以在我们自己编写的模型(Model)、视图(View)和控件器(Controller)中通过以下三步使用Benchmark:
下面就是使用示例
$this->benchmark->mark('code_start'); // Some code happens here $this->benchmark->mark('code_end'); echo $this->benchmark->elapsed_time('code_start', 'code_end');
$this->benchmark->mark('dog'); // Some code happens here $this->benchmark->mark('cat'); // More code happens here $this->benchmark->mark('bird'); echo $this->benchmark->elapsed_time('dog', 'cat'); echo $this->benchmark->elapsed_time('cat', 'bird'); echo $this->benchmark->elapsed_time('dog', 'bird');若希望显示从框架被加载到所有内容被正确发送至浏览器中所消耗的时间,可以在你的视图文件(View)中加入如下语句, 这个语句只能在视图文件(View)中使用。
<?php echo $this->benchmark->elapsed_time();?>
我们还可以在自己编写的视图中使用另一个模板标记来显示内存的使用信息
PS:上面提到的{elapsed_time}和{memroy_usage}标记只能在视图文件(View)中使用。