Ejemplo n.º 1
0
 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;
 }