正在加载...
分页: 1/1 第一页 1 最后页 [ 显示模式: 摘要 | 列表 ]

PHP 计算页面执行时间

[ 2010/08/11 12:29 | by selboo ]
[code][root@74-82-173-217 ~]# cat runtime.php
<?php
class runtime
{
  var $StartTime = 0;
  var $StopTime = 0;
  
  function get_microtime()
  {
    list($usec, $sec) = explode(' ', microtime());
    return ((float)$usec + (float)$sec);
  }

  function start()
  {
    $this->
Tags: ,
分页: 1/1 第一页 1 最后页 [ 显示模式: 摘要 | 列表 ]