//date:2011-08-05
class RunTime//ページ実行時間 class
{
private $starttime;//ページ開始実行時間
private $stoptime;/ /ページ終了実行時間
private $spendtime;//ページ実行にかかった時間
function getmicrotime()//現在のマイクロ秒を返す浮動小数点数を取得します
{
list($usec,$sec)=explode (" ",microtime ());
return ((float)$usec + (float)$sec)
}
function start()//ページは関数の実行を開始し、ページの実行が開始された時間を返します
{
$this->starttime= $this->getmicrotime();
}
function end()// ページの実行時間を表示します
{
$this->stoptime=$this->getmicrotime( );
$this->spendtime= $this->stoptime-$this->starttime;
//return Round($this->spendtime,10);
関数 display()
//$this->end() ;
echo "
実行時間:".round($this->spendtime,10)."秒
";メソッド
$timer=new Runtime( ); を呼び出します
$timer->start();
http://www.bkjia.com/PHPjc/324049.html
www.bkjia.com