当前位置:首页 > PHP教程 > php文件操作 > 列表

PHP文件缓存类实现代码

发布:smiling 来源: PHP粉丝网  添加日期:2021-06-21 11:06:40 浏览: 评论:0 

这篇文章主要介绍了PHP文件缓存类实现代码,php中缓存分类数据库缓存,文件缓存和内存缓存,对php缓存感兴趣的朋友可以学习学习下面的文章。

php中缓存分类数据库缓存,文件缓存和内存缓存,下面我来给各位同学详细介绍PHP文件缓存类实现代码,有需要了解的朋友可参考。

页面缓存类:

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

上面使用算是页面缓存了,每次访问页面的时候,都会先检测相应的缓存页面文件是否存在,如果不存在,就连接数据库,得到数据,显示页面并同时生成缓存页面文件,这样下次访问的时候页面文件就发挥作用了。(模板引擎和网上常见的一些缓存类通常有此功能)

给大家介绍一个Memcache缓存,算是内存缓存,代码如下:

  1. <?php 
  2. $memcache = new Memcache; 
  3. $memcache->connect('localhost', 11211) or die ("Could not connect"); 
  4. $version = $memcache->getVersion(); 
  5. echo "Server's version: ".$version."n"
  6. $tmp_object = new stdClass; 
  7. $tmp_object->str_attr = 'test'
  8. $tmp_object->int_attr = 123; 
  9. $memcache->set('key'$tmp_object, false, 10) or die ("Failed to save data at the server"); 
  10. echo "Store data in the cache (data will expire in 10 seconds)n"
  11. $get_result = $memcache->get('key'); 
  12. echo "Data from the cache:n"
  13. var_dump($get_result); 
  14. ?> 

Memcached是高性能的,分布式的内存对象缓存系统,用于在动态应用中减少数据库负载,提升访问速度。

Tags: PHP文件缓存类

分享到: