UOJTime.php 219 B

1234567891011
  1. <?php
  2. class UOJTime {
  3. public static $time_now;
  4. public static $time_now_str;
  5. public static function init() {
  6. self::$time_now = new DateTime();
  7. self::$time_now_str = self::$time_now->format('Y-m-d H:i:s');
  8. }
  9. }