php文件缓存方法总结

这篇文章主要为大家详细介绍了php文件缓存方法,内容如很详细,感兴趣的小伙伴们可以参考一下,为大家分享很全的php文件缓存,供大家参考,具体内容如下。

  1. <?php
  2. class cache
  3. {
  4. private static $_instance = null;
  5. protected $_options = array(
  6. 'cache_dir' => "./",
  7. 'file_name_prefix' => 'cache',
  8. 'mode' => '1', //mode 1 为serialize model 2为保存为可执行文件
  9. );
  10. /**
  11. * 得到本类实例
  12. *
  13. * @return Ambiguous
  14. */
  15. public static function getInstance()
  16. {
  17. if(self::$_instance === null)
  18. {
  19. self::$_instance = new self();
  20. }
  21. return self::$_instance;
  22. }
  23. /**
  24. * 得到缓存信息
  25. *
  26. * @param string $id
  27. * @return boolean|array
  28. */
  29. public static function get($id)
  30. {
  31. $instance = self::getInstance();
  32. //缓存文件不存在
  33. if(!$instance->has($id))
  34. {
  35. return false;
  36. }
  37. $file = $instance->_file($id);
  38. $data = $instance->_fileGetContents($file);
  39. if($data['expire'] == 0 || time() < $data['expire'])
  40. {
  41. return $data['contents'];
  42. }
  43. return false;
  44. }
  45. /**
  46. * 设置一个缓存
  47. *
  48. * @param string $id 缓存id
  49. * @param array $data 缓存内容
  50. * @param int $cacheLife 缓存生命 默认为0无限生命
  51. */
  52. public static function set($id, $data, $cacheLife = 0)
  53. {
  54. $instance = self::getInstance();
  55. $time = time();
  56. $cache = array();
  57. $cache['contents'] = $data;
  58. $cache['expire'] = $cacheLife === 0 ? 0 : $time + $cacheLife;
  59. $cache['mtime'] = $time;
  60. $file = $instance->_file($id);
  61. return $instance->_filePutContents($file, $cache);
  62. }
  63. /**
  64. * 清除一条缓存
  65. *
  66. * @param string cache id
  67. * @return void
  68. */
  69. public static function delete($id)
  70. {
  71. $instance = self::getInstance();
  72. if(!$instance->has($id))
  73. {
  74. return false;
  75. }
  76. $file = $instance->_file($id);
  77. //删除该缓存
  78. return unlink($file);
  79. }
  80. /**
  81. * 判断缓存是否存在
  82. *
  83. * @param string $id cache_id
  84. * @return boolean true 缓存存在 false 缓存不存在
  85. */
  86. public static function has($id)
  87. {
  88. $instance = self::getInstance();
  89. $file = $instance->_file($id);
  90. if(!is_file($file))
  91. {
  92. return false;
  93. }
  94. return true;
  95. }
  96. /**
  97. * 通过缓存id得到缓存信息路径
  98. * @param string $id
  99. * @return string 缓存文件路径
  100. */
  101. protected function _file($id)
  102. {
  103. $instance = self::getInstance();
  104. $fileNmae = $instance->_idToFileName($id);
  105. return $instance->_options['cache_dir'] . $fileNmae;
  106. }
  107. /**
  108. * 通过id得到缓存信息存储文件名
  109. *
  110. * @param $id
  111. * @return string 缓存文件名
  112. */
  113. protected function _idToFileName($id)
  114. {
  115. $instance = self::getInstance();
  116. $prefix = $instance->_options['file_name_prefix'];
  117. return $prefix . '---' . $id;
  118. }
  119. /**
  120. * 通过filename得到缓存id
  121. *
  122. * @param $id
  123. * @return string 缓存id
  124. */
  125. protected function _fileNameToId($fileName)
  126. {
  127. $instance = self::getInstance();
  128. $prefix = $instance->_options['file_name_prefix'];
  129. return preg_replace('/^' . $prefix . '---(.*)$/', '$1', $fileName);
  130. }
  131. /**
  132. * 把数据写入文件
  133. *
  134. * @param string $file 文件名称
  135. * @param array $contents 数据内容
  136. * @return bool
  137. */
  138. protected function _filePutContents($file, $contents)
  139. {
  140. if($this->_options['mode'] == 1)
  141. {
  142. $contents = serialize($contents);
  143. }
  144. else
  145. {
  146. $time = time();
  147. $contents = "<?php\n".
  148. " // mktime: ". $time. "\n".
  149. " return ".
  150. var_export($contents, true).
  151. "\n?>";
  152. }
  153. $result = false;
  154. $f = @fopen($file, 'w');
  155. if ($f) {
  156. @flock($f, LOCK_EX);
  157. fseek($f, 0);
  158. ftruncate($f, 0);
  159. $tmp = @fwrite($f, $contents);
  160. if (!($tmp === false)) {
  161. $result = true;
  162. }
  163. @fclose($f);
  164. }
  165. @chmod($file,0777);
  166. return $result;
  167. }
  168. /**
  169. * 从文件得到数据
  170. *
  171. * @param sring $file
  172. * @return boolean|array
  173. */
  174. protected function _fileGetContents($file)
  175. {
  176. if(!is_file($file))
  177. {
  178. return false;
  179. }
  180. if($this->_options['mode'] == 1)
  181. {
  182. $f = @fopen($file, 'r');
  183. @$data = fread($f,filesize($file));
  184. @fclose($f);
  185. return unserialize($data);
  186. }
  187. else
  188. {
  189. return include $file;
  190. }
  191. }
  192. /**
  193. * 构造函数
  194. */
  195. protected function __construct()
  196. {
  197. }
  198. /**
  199. * 设置缓存路径
  200. *
  201. * @param string $path
  202. * @return self
  203. */
  204. public static function setCacheDir($path)
  205. {
  206. $instance = self::getInstance();
  207. if (!is_dir($path)) {
  208. exit('file_cache: ' . $path.' 不是一个有效路径 ');
  209. }
  210. if (!is_writable($path)) {
  211. exit('file_cache: 路径 "'.$path.'" 不可写');
  212. }
  213. $path = rtrim($path,'/') . '/';
  214. $instance->_options['cache_dir'] = $path;
  215. return $instance;
  216. }
  217. /**
  218. * 设置缓存文件前缀
  219. *
  220. * @param srting $prefix
  221. * @return self
  222. */
  223. public static function setCachePrefix($prefix)
  224. {
  225. $instance = self::getInstance();
  226. $instance->_options['file_name_prefix'] = $prefix;
  227. return $instance;
  228. }
  229. /**
  230. * 设置缓存存储类型
  231. *
  232. * @param int $mode
  233. * @return self
  234. */
  235. public static function setCacheMode($mode = 1)
  236. {
  237. $instance = self::getInstance();
  238. if($mode == 1)
  239. {
  240. $instance->_options['mode'] = 1;
  241. }
  242. else
  243. {
  244. $instance->_options['mode'] = 2;
  245. }
  246. return $instance;
  247. }
  248. /**
  249. * 删除所有缓存
  250. * @return boolean
  251. */
  252. public static function flush()
  253. {
  254. $instance = self::getInstance();
  255. $glob = @glob($instance->_options['cache_dir'] . $instance->_options['file_name_prefix'] . '--*');
  256. if(emptyempty($glob))
  257. {
  258. return false;
  259. }
  260. foreach ($glob as $v)
  261. {
  262. $fileName = basename($v);
  263. $id = $instance->_fileNameToId($fileName);
  264. $instance->delete($id);
  265. }
  266. return true;
  267. }
  268. }
  269. /* 初始化设置cache的配置信息什么的 */
  270. cache::setCachePrefix('core'); //设置缓存文件前缀
  271. cache::setCacheDir('./cache'); //设置存放缓存文件夹路径
  272. //模式1 缓存存储方式
  273. //a:3:{s:8:"contents";a:7:{i:0;i:1;i:1;i:2;i:2;i:3;i:3;i:34;i:4;i:5;i:5;i:6;i:6;i:6;}s:6:"expire";i:0;s:5:"mtime";i:1318218422;}
  274. //模式2 缓存存储方式
  275. /*
  276. <?php
  277. // mktime: 1318224645
  278. return array (
  279. 'contents' =>
  280. array (
  281. 0 => 1,
  282. 1 => 2,
  283. 2 => 3,
  284. 3 => 34,
  285. 4 => 5,
  286. 5 => 6,
  287. 6 => 6,
  288. ),
  289. 'expire' => 0,
  290. 'mtime' => 1318224645,
  291. )
  292. ?>
  293. *
  294. *
  295. */
  296. cache::setCacheMode('2');
  297. if(!$row = cache::get('zj2'))
  298. {
  299. $array = array(1,2,3,34,5,6,6);
  300. $row = cache::set('zj2',$array);
  301. }
  302. // cache::flush(); 清空所有缓存
  303. print_r($row);

文件缓存class

  1. <?php
  2. /**
  3. * 文件缓存类
  4. * @author xiaojiong & 290747680@qq.com
  5. * @date 2011-08-17
  6. */
  7. class cache
  8. {
  9. const FILE_LIFE_KEY = 'FILE_LIFE_KEY';
  10. const CLEAR_ALL_KEY = 'CLEAR_ALL';
  11. static $_instance = null;
  12. protected $_options = array(
  13. 'cache_dir' => './cache',
  14. 'file_locking' => true,
  15. 'file_name_prefix' => 'cache',
  16. 'cache_file_umask' => 0777,
  17. 'file_life' => 100000
  18. );
  19. static function &getInstance($options = array())
  20. {
  21. if(self::$_instance === null)
  22. {
  23. self::$_instance = new self($options);
  24. }
  25. return self::$_instance;
  26. }
  27. /**
  28. * 设置参数
  29. * @param array $options 缓存参数
  30. * @return void
  31. */
  32. static function &setOptions($options = array())
  33. {
  34. return self::getInstance($options);
  35. }
  36. /**
  37. * 构造函数
  38. * @param array $options 缓存参数
  39. * @return void
  40. */
  41. private function __construct($options = array())
  42. {
  43. if ($this->_options['cache_dir'] !== null) {
  44. $dir = rtrim($this->_options['cache_dir'],'/') . '/';
  45. $this->_options['cache_dir'] = $dir;
  46. if (!is_dir($this->_options['cache_dir'])) {
  47. mkdir($this->_options['cache_dir'],0777,TRUE);
  48. }
  49. if (!is_writable($this->_options['cache_dir'])) {
  50. exit('file_cache: 路径 "'. $this->_options['cache_dir'] .'" 不可写');
  51. }
  52. } else {
  53. exit('file_cache: "options" cache_dir 不能为空 ');
  54. }
  55. }
  56. /**
  57. * 设置缓存路径
  58. * @param string $value
  59. * @return void
  60. */
  61. static function setCacheDir($value)
  62. {
  63. $self = & self::getInstance();
  64. if (!is_dir($value)) {
  65. exit('file_cache: ' . $value.' 不是一个有效路径 ');
  66. }
  67. if (!is_writable($value)) {
  68. exit('file_cache: 路径 "'.$value.'" 不可写');
  69. }
  70. $value = rtrim($this->_options['cache_dir'],'/') . '/';
  71. $self->_options['cache_dir'] = $value;
  72. }
  73. /**
  74. * 存入缓存数据
  75. * @param array $data 放入缓存的数据
  76. * @param string $id 缓存id(又名缓存识别码)
  77. * @param cache_life 缓存时间
  78. * @return boolean True if no problem
  79. */
  80. static function save($data, $id = null, $cache_life = null)
  81. {
  82. $self = & self::getInstance();
  83. if (!$id) {
  84. if ($self->_id) {
  85. $id = $self->_id;
  86. } else {
  87. exit('file_cache:save() id 不能为空!');
  88. }
  89. }
  90. $time = time();
  91. if($cache_life) {
  92. $data[self::FILE_LIFE_KEY] = $time + $cache_life;
  93. }
  94. elseif
  95. ($cache_life != 0){
  96. $data[self::FILE_LIFE_KEY] = $time + $self->_options['file_life'];
  97. }
  98. $file = $self->_file($id);
  99. $data = "<?php\n".
  100. " // mktime: ". $time. "\n".
  101. " return ".
  102. var_export($data, true).
  103. "\n?>"
  104. ;
  105. $res = $self->_filePutContents($file, $data);
  106. return $res;
  107. }
  108. /**
  109. * 得到缓存信息
  110. *
  111. * @param string $id 缓存id
  112. * @return string|array 缓存数据
  113. */
  114. static function load($id)
  115. {
  116. $self = & self::getInstance();
  117. $time = time();
  118. //检测缓存是否存在
  119. if (!$self->test($id)) {
  120. // The cache is not hit !
  121. return false;
  122. }
  123. //全部清空识别文件
  124. $clearFile = $self->_file(self::CLEAR_ALL_KEY);
  125. $file = $self->_file($id);
  126. //判断缓存是否已被全部清除
  127. if(is_file($clearFile) && filemtime($clearFile) > filemtime($file))
  128. {
  129. return false;
  130. }
  131. $data = $self->_fileGetContents($file);
  132. if(emptyempty($data[self::FILE_LIFE_KEY]) || $time < $data[self::FILE_LIFE_KEY]) {
  133. unset($data[self::FILE_LIFE_KEY]);
  134. return $data;
  135. }
  136. return false;
  137. }
  138. /**
  139. * 写入缓存文件
  140. *
  141. * @param string $file 缓存路径
  142. * @param string $string 缓存信息
  143. * @return boolean true 成功
  144. */
  145. protected function _filePutContents($file, $string)
  146. {
  147. $self = & self::getInstance();
  148. $result = false;
  149. $f = @fopen($file, 'ab+');
  150. if ($f) {
  151. if ($self->_options['file_locking']) @flock($f, LOCK_EX);
  152. fseek($f, 0);
  153. ftruncate($f, 0);
  154. $tmp = @fwrite($f, $string);
  155. if (!($tmp === false)) {
  156. $result = true;
  157. }
  158. @fclose($f);
  159. }
  160. @chmod($file, $self->_options['cache_file_umask']);
  161. return $result;
  162. }
  163. /**
  164. * 格式化后的缓存文件路径
  165. *
  166. * @param string $id 缓存id
  167. * @return string 缓存文件名(包括路径)
  168. */
  169. protected function _file($id)
  170. {
  171. $self = & self::getInstance();
  172. $fileName = $self->_idToFileName($id);
  173. return $self->_options['cache_dir'] . $fileName;
  174. }
  175. /**
  176. * 格式化后的缓存文件名字
  177. *
  178. * @param string $id 缓存id
  179. * @return string 缓存文件名
  180. */
  181. protected function _idToFileName($id)
  182. {
  183. $self = & self::getInstance();
  184. $self->_id = $id;
  185. $prefix = $self->_options['file_name_prefix'];
  186. $result = $prefix . '---' . $id;
  187. return $result;
  188. }
  189. /**
  190. * 判断缓存是否存在
  191. *
  192. * @param string $id Cache id
  193. * @return boolean True 缓存存在 False 缓存不存在
  194. */
  195. static function test($id)
  196. {
  197. $self = & self::getInstance();
  198. $file = $self->_file($id);
  199. if (!is_file($file)) {
  200. return false;
  201. }
  202. return true;
  203. }
  204. /**
  205. * 得到缓存信息
  206. *
  207. * @param string $file 缓存路径
  208. * @return string 缓存内容
  209. */
  210. protected function _fileGetContents($file)
  211. {
  212. if (!is_file($file)) {
  213. return false;
  214. }
  215. return include $file;
  216. }
  217. /**
  218. * 清除所有缓存
  219. *
  220. * @return void
  221. */
  222. static function clear()
  223. {
  224. $self = & self::getInstance();
  225. $self->save('CLEAR_ALL',self::CLEAR_ALL_KEY);
  226. }
  227. /**
  228. * 清除一条缓存
  229. *
  230. * @param string cache id
  231. * @return void
  232. */
  233. static function del($id)
  234. {
  235. $self = & self::getInstance();
  236. if(!$self->test($id)){
  237. // 该缓存不存在
  238. return false;
  239. }
  240. $file = $self->_file($id);
  241. return unlink($file);
  242. }
  243. }

存入数据

  1. <?php
  2. $config = array(
  3. 'name' => 'xiaojiong',
  4. 'qq' => '290747680',
  5. 'age' => '20',
  6. );
  7. //第一个参数 缓存data
  8. //第二个参数 缓存id
  9. //第三个参数 cache_life 0 永不过期(cache::clear()清空所有除外) 默认cache_life 为option_cache_life
  10. cache::save($config,'config',0);

载入数据

  1. <?php
  2. //只有一个参数 cache_id
  3. $config = cache::load('config');
清空缓存
  1. <?php
  2. //清空指定缓存
  3. cache::del('config');
  4. //清空所有缓存
  5. cache::clear();

cache信息配置

  1. //在执行所有cache_func前调用
  2. $_options = array(
  3. 'cache_dir' => './cache', //缓存文件目录
  4. 'file_name_prefix' => 'cache',//缓存文件前缀
  5. 'file_life' => 100000, //缓存文件生命
  6. );
  7. cache::setOptions($options);
  8. //再执行 就会按着新配置信息执行,否则是默认信息
  9. cache::save($arr,'arr');
  10. //就是这个方法 貌似不合理 望大家指点

以上就是本文的全部内容,希望对大家的学习有所帮助。