コード例 #1
0
ファイル: iSQLite.class.php プロジェクト: Junred/iCMS
 /**
  * Starts the timer, for debugging purposes
  */
 public static function timer_start()
 {
     $mtime = microtime();
     $mtime = explode(' ', $mtime);
     self::$time_start = $mtime[1] + $mtime[0];
     return true;
 }