摘要: <?phpinclude_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-& 阅读全文
posted @ 2012-10-30 15:44 原来我不帥 阅读(129) 评论(0) 推荐(0) 编辑