首页 > php教程 > php手册 > 正文

网站适用的PHP缓存类

WBOY
发布: 2016-06-13 09:39:42
原创
890 人浏览过

缓存在实际使用当中应用很广泛,可以减轻对服务器数据库的访问,提高运行速度。目前很多CMS内容管理系统中频繁使用缓存机制来提高系统运行的效率。下面是一个写得不错的缓存类,可以参考下缓存的机制与写法。

cache.php 代码如下:

[php] view plaincopy  
  1. /*  
  2. 用户需要事先定义的常量:  
  3. _CachePath_        模板缓存路径  
  4. _CacheEnable_        自动缓存机制是否开启,未定义或为空,表示关闭自动缓存机制  
  5. _ReCacheTime_        自动重新缓存间隔时间,单位为秒,未定义或为空,表示关闭自动重新缓存  
  6. */    
  7.     
  8. class cache   
  9. {  
  10.     var $cachefile;    
  11.     var $cachefilevar;    
  12.     
  13.     function cache()   
  14.     {    
  15.         //生成当前页的Cache组文件名 $this->cachefilevar 及文件名 $this->cachefile    
  16.         //动态页的参数不同对应的Cache文件也不同,但是每一个动态页的所有Cache文件都有相同的文件名,只是扩展名不同    
  17.         $s=array(".","/");$r=array("_","");    
  18.         $this->cachefilevar=str_replace($s,$r,$_SERVER["SCRIPT_NAME"])."_".$_GET[_ActionVar_];    
  19.         $this->cachefile=$this->cachefilevar.".".md5($_SERVER["REQUEST_URI"]);    
  20.     }    
  21.     
  22.     //删除当前页/模块的缓存    
  23.     function delete()   
  24.     {    
  25.         //删除当前页的缓存    
  26.         $d = dir(_CachePath_);    
  27.         $strlen=strlen($this->cachefilevar);    
  28.         //返回当前页的所有Cache文件组    
  29.         while (false !== ($entry = $d->read()))   
  30.         {    
  31.             if (substr($entry,0,$strlen)==$this->cachefilevar)   
  32.             {    
  33.                 if (!unlink(_CachePath_."/".$entry)) {echo "Cache目录无法写入";exit;}    
  34.             }    
  35.         }    
  36.     }    
  37.     
  38.     //判断是否已Cache过,以及是否需要Cache    
  39.     function check()   
  40.     {    
  41.         //如果设置了缓存更新间隔时间 _ReCacheTime_    
  42.         if (_ReCacheTime_ 0>0)  
  43.         {    
  44.             //返回当前页Cache的最后更新时间    
  45.             $var=@file(_CachePath_."/".$this->cachefilevar);$var=$var[0];    
  46.             //如果更新时间超出更新间隔时间则删除Cache文件    
  47.             if (time()-$var>_ReCacheTime_)   
  48.             {    
  49.                 $this->delete();$ischage=true;    
  50.             }    
  51.         }    
  52.         //返回当前页的Cache    
  53.         $file=_CachePath_."/".$this->cachefile;    
  54.         //判断当前页Cache是否存在 且 Cache功能是否开启    
  55.         return (file_exists($file) and _CacheEnable_ and !$ischange);    
  56.     }    
  57.     
  58.     //读取Cache    
  59.     function read()   
  60.     {    
  61.         //返回当前页的Cache    
  62.         $file=_CachePath_."/".$this->cachefile;    
  63.         //读取Cache文件的内容    
  64.         if (_CacheEnable_) return readfile($file);    
  65.         else return false;    
  66.     }    
  67.     
  68.     //生成Cache    
  69.     function write($output)   
  70.     {    
  71.         //返回当前页的Cache    
  72.         $file=_CachePath_."/".$this->cachefile;    
  73.         //如果Cache功能开启    
  74.         if (_CacheEnable_)   
  75.         {    
  76.             //把输出的内容写入Cache文件    
  77.             $fp=@fopen($file,'w');    
  78.             if (!@fputs($fp,$output)) {echo "模板Cache写入失败";exit;}    
  79.             @fclose($fp);    
  80.             //如果设置了缓存更新间隔时间 _ReCacheTime_    
  81.             if (_ReCacheTime_ 0>0)   
  82.             {    
  83.                 //更新当前页Cache的最后更新时间    
  84.                 $file=_CachePath_."/".$this->cachefilevar;    
  85.                 $fp=@fopen($file,'w');    
  86.                 if (!@fwrite($fp,time())) {echo "Cache目录无法写入";exit;}    
  87.                 @fclose($fp);    
  88.             }    
  89.         }    
  90.     }    
  91. }    
  92. ?>  


 

 

类的使用:

[php] view plaincopy  
  1.     define("_CachePath_","./cache/");    
  2.     define("_CacheEnable_","1");    
  3.     define("_ReCacheTime_","43200");    
  4.     include('cache.php');    
  5.     $cache=new cache();    
  6.     if ($cache->check())   
  7.     {    
  8.         $template=$cache->read();    
  9.     }  
  10.     else   
  11.     {    
  12.         ob_start();    
  13.         ob_implicit_flush(0);    
  14. ?>    
  15.     页面内容。。。。    
  16.         $template = ob_get_contents();    
  17.         $cache->write($template);    
  18.     }    
  19. ?>    


 

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门推荐
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!