예제 #1
0
파일: Front.php 프로젝트: hongbo819/LJL
 public static function getCache($url = null)
 {
     $key = self::$_cacheKey;
     if (!$key) {
         return false;
     }
     if (self::checkExpire()) {
         $data = LJL_File::get($key);
         return gzinflate($data);
     }
     return false;
 }