<?php/**php页面执行时间统计类**/classruntime{var$StartTime=0;var$StopTime=0;//获取微秒functionget_microtime(){list($usec,$sec)=explode('',microtime());return((float)$usec+(float)$sec);}//记录开始时间functionstart(){$this->StartTime=$this->get_microtime();}//记录结束时间functionstop(){$this->StopTime=$this->get_microtime();}//计算所用时间&取整functionspent(){returnround((...