php运行时间

<?php
include_once '../common.php';

class runtime
{
    var $StartTime = 0;
    var $StopTime = 0;
    function get_microtime()
    {
        //list($usec, $sec) = explode(" ", microtime());
        //return ((float) $usec + (float) $sec);
        return microtime(true);
    }

    function start()
    {
        $this->StartTime = $this->get_microtime();
    }

    function stop()
    {
        $this->StopTime = $this->get_microtime();
    }

    function spent()
    {
        return round(($this->StopTime - $this->StartTime) * 1000, 1);
    }
}

posted @ 2012-10-30 15:44  原来我不帥  阅读(129)  评论(0编辑  收藏  举报