PHP文件缓存类实现代码

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

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

页面缓存类:

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

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

给大家介绍一个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是高性能的,分布式的内存对象缓存系统,用于在动态应用中减少数据库负载,提升访问速度。