首頁 > php教程 > PHP源码 > 主體

一个检查程序运行时间的类

PHP中文网
發布: 2016-05-23 16:40:07
原創
972 人瀏覽過

跳至

startTime = 0;
            $this->endTime   = 0;
        }

        /**
         * 设置程序开始时间
         */
        public function setStartTime()
        {
            $this->startTime = microtime(true);
        }

        /**
         * 设置程序结束时间
         */
        public function setEndTime()
        {
            $this->endTime=microtime(true);
        }

        /**
         * 计算程序执行时间
         * @return 返回程序执行的毫秒数
         */
        public function getExecuteTime()
        {

            return $this->endTime - $this->startTime;
        }



    }
登入後複製
登入後複製

2. [文件] GetExecuteTime.class.php ~ 957B

startTime = 0;
            $this->endTime   = 0;
        }

        /**
         * 设置程序开始时间
         */
        public function setStartTime()
        {
            $this->startTime = microtime(true);
        }

        /**
         * 设置程序结束时间
         */
        public function setEndTime()
        {
            $this->endTime=microtime(true);
        }

        /**
         * 计算程序执行时间
         * @return 返回程序执行的毫秒数
         */
        public function getExecuteTime()
        {

            return $this->endTime - $this->startTime;
        }



    }
登入後複製
登入後複製

3. [代码]测试

setStartTime();
    for( $i = 0; $i < 10000; $i++)
    {
        echo $i."";
    }

    $executeTime->setEndTime();
   echo  $executeTime->getExecuteTime()."";
?>
登入後複製
登入後複製

4. [文件] test.php ~ 296B

setStartTime();
    for( $i = 0; $i < 10000; $i++)
    {
        echo $i."";
    }

    $executeTime->setEndTime();
   echo  $executeTime->getExecuteTime()."";
?>
登入後複製
登入後複製

                           

       

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門推薦
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板