VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • 一个简洁实用的PHP缓存类完整实例

这篇文章主要介绍了一个简洁实用的PHP缓存类完整实例,缓存的应用对于php大型项目的开发来说至关重要,需要的朋友可以参考下

本文完整描述了一个简洁实用的PHP缓存类,可用来检查缓存文件是否在设置更新时间之内、清除缓存文件、根据当前动态文件生成缓存文件名、连续创建目录、缓存文件输出静态等功能。对于采用PHP开发CMS系统来说,离不开对缓存的处理,合理利用好缓存可有效的提高程序执行效率。

php缓存类文件完整代码如下:

  1. <?php 
  2. /* 
  3. * 缓存类 cache 
  4. */ 
  5. class cache { 
  6. //缓存目录 
  7. var $cacheRoot = "./cache/"
  8. //缓存更新时间秒数,0为不缓存 
  9. var $cacheLimitTime = 0; 
  10. //缓存文件名 
  11. var $cacheFileName = ""
  12. //缓存扩展名 
  13. var $cacheFileExt = "php"
  14. /* 
  15.   * 构造函数 
  16.   * int $cacheLimitTime 缓存更新时间 
  17.   */ 
  18. function cache( $cacheLimitTime ) { 
  19.   ifintval$cacheLimitTime ) ) 
  20.   $this->cacheLimitTime = $cacheLimitTime
  21.   $this->cacheFileName = $this->getCacheFileName(); 
  22.   ob_start(); 
  23. }  
  24. /* 
  25.   * 检查缓存文件是否在设置更新时间之内 
  26.   * 返回:如果在更新时间之内则返回文件内容,反之则返回失败 
  27.   */ 
  28. function cacheCheck(){ 
  29.   iffile_exists$this->cacheFileName ) ) { 
  30.   $cTime = $this->getFileCreateTime( $this->cacheFileName ); 
  31.   if$cTime + $this->cacheLimitTime > time() ) { 
  32.   echo file_get_contents$this->cacheFileName ); 
  33.   ob_end_flush(); 
  34.   exit
  35.   } 
  36.   } 
  37.   return false; 
  38. /* 
  39.   * 缓存文件或者输出静态 
  40.   * string $staticFileName 静态文件名(含相对路径) 
  41.   */ 
  42. function caching( $staticFileName = "" ){ 
  43.   if$this->cacheFileName ) { 
  44.   $cacheContent = ob_get_contents(); 
  45.   ob_end_flush(); 
  46.   if$staticFileName ) { 
  47.   $this->saveFile( $staticFileName$cacheContent ); 
  48.   } 
  49.   if$this->cacheLimitTime ) 
  50.   $this->saveFile( $this->cacheFileName, $cacheContent ); 
  51.   } 
  52. }  
  53. /* 
  54.   * 清除缓存文件 
  55.   * string $fileName 指定文件名(含函数)或者all(全部) 
  56.   * 返回:清除成功返回true,反之返回false 
  57.   */ 
  58. function clearCache( $fileName = "all" ) { 
  59.   if$fileName != "all" ) { 
  60.   $fileName = $this->cacheRoot . strtoupper(md5($fileName)).".".$this->cacheFileExt; 
  61.   iffile_exists$fileName ) ) { 
  62.   return @unlink( $fileName ); 
  63.   }else return false; 
  64.   } 
  65.   if ( is_dir$this->cacheRoot ) ) { 
  66.   if ( $dir = @opendir( $this->cacheRoot ) ) { 
  67.   while ( $file = @readdir( $dir ) ) { 
  68.   $check = is_dir$file ); 
  69.   if ( !$check ) 
  70.   @unlink( $this->cacheRoot . $file ); 
  71.   } 
  72.   @closedir$dir ); 
  73.   return true; 
  74.   }else
  75.   return false; 
  76.   } 
  77.   }else
  78.   return false; 
  79.   } 
  80. /*根据当前动态文件生成缓存文件名*/ 
  81. function getCacheFileName() { 
  82.   return $this->cacheRoot . strtoupper(md5($_SERVER["REQUEST_URI"])).".".$this->cacheFileExt; 
  83. /* 
  84.   * 缓存文件建立时间 
  85.   * string $fileName 缓存文件名(含相对路径) 
  86.   * 返回:文件生成时间秒数,文件不存在返回0 
  87.   */ 
  88. function getFileCreateTime( $fileName ) { 
  89.   if( ! trim($fileName) ) return 0; 
  90.   iffile_exists$fileName ) ) { 
  91.   return intval(filemtime$fileName )); 
  92.   }else return 0; 
  93. }  
  94. /* 
  95.   * 保存文件 
  96.   * string $fileName 文件名(含相对路径) 
  97.   * string $text 文件内容 
  98.   * 返回:成功返回ture,失败返回false 
  99.   */ 
  100. function saveFile($fileName$text) { 
  101.   if( ! $fileName || ! $text ) return false; 
  102.   if$this->makeDir( dirname( $fileName ) ) ) { 
  103.   if$fp = fopen$fileName"w" ) ) { 
  104.   if( @fwrite( $fp$text ) ) { 
  105.   fclose($fp); 
  106.   return true; 
  107.   }else { 
  108.   fclose($fp); 
  109.   return false; 
  110.   } 
  111.   } 
  112.   } 
  113.   return false; 
  114. /* 
  115.   * 连续建目录 
  116.   * string $dir 目录字符串 
  117.   * int $mode 权限数字 
  118.   * 返回:顺利创建或者全部已建返回true,其它方式返回false 
  119.   */ 
  120. function makeDir( $dir$mode = "0777" ) { 
  121.   if( ! $dir ) return 0; 
  122.   $dir = str_replace"\\", "/", $dir ); 
  123.   $mdir = ""
  124.   foreachexplode"/"$dir ) as $val ) { 
  125.   $mdir .= $val."/"
  126.   if$val == ".." || $val == "." || trim( $val ) == "" ) continue
  127.   if( ! file_exists$mdir ) ) { 
  128.   if(!@mkdir$mdir$mode )){ 
  129.   return false; 
  130.   } 
  131.   } 
  132.   } 
  133.   return true; 
  134. ?> 

使用该缓存类的时候可将以上代码保存为cache.php,具体用法如下所示:

  1. include"cache.php" ); 
  2. $cache = new cache(30); 
  3. $cache->cacheCheck(); 
  4. echo date("Y-m-d H:i:s"); 
  5. $cache->caching(); 
  6.  



出处:http://www.phpfensi.com/php/20210325/14001.html


相关教程