1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
class Cache {
public static $cache_path = "";
public static function setCache($name, $value, $expire = null) { if (is_null($expire)) { $expire = 0; } $file = self::_getCacheName($name); $data = serialize($value); $data = "<?php\n//" . sprintf('%012d', $expire) . "\n exit();?>\n" . $data; file_put_contents($file, $data); return $file; }
public static function getCache($name,$default = false) { $file = self::_getCacheName($name); if (file_exists($file) && ($content = file_get_contents($file))) { $expire = (int)substr($content, 8, 12); if ($expire === 0 || filemtime($file) + $expire >= time()) { $content = unserialize(substr($content, 32)); return $content; } self::delCache($name); } return $default; }
public static function delCache($name) { $file = self::_getCacheName($name); return file_exists($file) ? unlink($file) : true; }
private static function _getCacheName($name) { if (empty(self::$cache_path)) { self::$cache_path = dirname(dirname(__DIR__)) . DIRECTORY_SEPARATOR . DIRECTORY_SEPARATOR; } self::$cache_path = rtrim(self::$cache_path, '/\\') . DIRECTORY_SEPARATOR; if (!file_exists(self::$cache_path)) { mkdir(self::$cache_path, 0755, true); } return self::$cache_path . $name; } }
|