美文网首页
php 程序运行时间类

php 程序运行时间类

作者: lushuozhi | 来源:发表于2016-05-05 15:01 被阅读0次

    <code>

    class timer{
    private $start; //程序运行开始时间
    private $end; //程序运行结束时间
    private $spend; //程序运行时间

    function start(){ //程序运行开始
        $this->start=microtime(true);
    }
    
    function end(){//程序运行结束
        $this->end=microtime(true);
    }
    
    function spend(){//程序执行时间
        $this->spend=$this->end-$this->start;
        return number_format($this->spend*1000,4)."毫秒";
    }
    

    }

    //使用方法
    // $time= new timer();
    // $time->start();
    // $time->end();
    // $time->spend();
    </code>

    相关文章

      网友评论

          本文标题:php 程序运行时间类

          本文链接:https://www.haomeiwen.com/subject/dsudrttx.html