示例#1
0
文件: Basic.php 项目: dlehmann/DevCE
 public static function getNow()
 {
     if (is_null(self::$now)) {
         return self::$now = time();
     }
     return self::$now;
     // end function
 }