Ejemplo n.º 1
0
 /**
  * stop the timer
  *
  * @return void
  */
 public static function stop()
 {
     $now = self::now();
     if (!self::$start_time) {
         self::$start_time = $now;
     }
     self::$stop_time = $now;
     self::$duration = self::$stop_time - self::$start_time;
     self::$start_time = 0;
 }