加入收藏 | 设为首页 | 会员中心 | 我要投稿 安卓应用网 (https://www.0791zz.com/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > PHP > 正文

php 缓存类的简单示例

发布时间:2020-05-25 05:06:51 所属栏目:PHP 来源:互联网
导读:php 缓存类的简单示例

对一个简单的php缓存类感兴趣的小伙伴,下面一起跟随脚本之家 jb51.cc的小编两巴掌来看看吧!


<?php
/**
 * 一个简单的php缓存类
 *
 * @param 
 * @author 网: jb51.cc
 * Class Cache
 * @author Koen Ekelschot
 * @license WTFPL
 */
class Cache {
 private $cachedFile;
 public function __construct($identifier) {
  $this->cachedFile = ROOT.DS.'tmp'.DS.'cache'.DS.md5($identifier);
 }
 public function cacheExists($maxAge) {
  if (file_exists($this->cachedFile) && !is_dir($this->cachedFile)) {
   if (filemtime($this->cachedFile) + $maxAge > time()) {
	return true;
   } else {
	$this->invalidateCache();
   }
  }
  return false;
 }
 public function getCachedCopy() {
  $contents = file_get_contents($this->cachedFile);
  return unserialize(base64_decode($contents));
 }
 public function getCachedFilename() {
  return str_replace(ROOT,'',$this->cachedFile);
 }
 public function cacheResult($result) {
  if (file_exists($this->cachedFile) && !is_dir($this->cachedFile)) {
   $this->invalidateCache();
  }
  $base64 = base64_encode(serialize($result));
  file_put_contents($this->cachedFile,$base64);
 }
 private function invalidateCache() {
  unlink($this->cachedFile);
 }
}
            
/***   来自脚本之家 jb51.cc(jb51.cc)   ***/

(编辑:安卓应用网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读