首頁 > 後端開發 > php教程 > 一個php網站快取程式碼分享

一個php網站快取程式碼分享

WBOY
發布: 2016-07-25 09:05:13
原創
1185 人瀏覽過
  1. /**
  2. * @author Seraphim
  3. * @copyright 2012
  4. * @link http://bbs.it-home.org
  5. */
  6. //
  7. function sendheader($last_modified, $p_type, $content_length = 0)
  8. {
  9. // 設定客戶端快取有效時間
  10. header("Expires: " . gmdate("D, d M Y H:i: s", time() + 15360000) . "GMT");
  11. header("Cache-Control: max-age=315360000");
  12. header("Pragma: ");
  13. // 設定最後修改時間
  14. header("Last-Modified: " . $last_modified);
  15. // 設定檔類型資訊
  16. header($p_type);
  17. header("Content-Length: " . $ content_length);
  18. }
  19. define('ABSPATH', dirname(__file__) . '/');
  20. $cache = true;
  21. $cachedir = 'cache/'; //存放gz檔案的目錄,確保可寫入
  22. if (empty($_SERVER['QUERY_STRING']))
  23. exit();
  24. $gzip = strstr($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip');
  25. if (empty($gzip))
  26. $cache = false;
  27. $key = array_shift(explode('?', $_SERVER['QUERY_STRING']));
  28. $key = str_replace ('../', '', $key);
  29. $filename = ABSPATH . $key;
  30. $symbol = '_';
  31. $rel_path = str_replace(ABSPATH, '', dirname( $filename));
  32. $namespace = str_replace('/', $symbol, $rel_path);
  33. $cache_filename = ABSPATH . $cachedir . $namespace . $symbol . basename($filename) .
  34. '.gz'; //產生gz檔案路徑
  35. $ext = array_pop(explode('.', $filename)); //根據後綴判斷檔案類型資訊
  36. $type = "Content-type: text /html"; //預設的檔案類型
  37. switch ($ext)
  38. {
  39. case 'css':
  40. $type = "Content-type: text/css";
  41. break ;
  42. case 'js':
  43. $type = "Content-type: text/javascript";
  44. break;
  45. case 'gif':
  46. $cache = false;
  47. $ type = "Content-type: image/gif";
  48. break;
  49. case 'jpg':
  50. $cache = false;
  51. $type = "Content-type: image/jpeg";
  52. break;
  53. case 'png':
  54. $cache = false;
  55. $type = "Content-type: image/png";
  56. break;
  57. default:
  58. exit ();
  59. }
  60. if ($cache)
  61. {
  62. if (file_exists($cache_filename))
  63. { // 假如存在gz檔案
  64. $mtime = filemtime($cache_filename );
  65. $gmt_mtime = gmdate('D, d M Y H:i:s', $mtime) . ' GMT';
  66. if ((isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) && array_shift(explode( ';', $_SERVER['HTTP_IF_MODIFIED_SINCE'])) ==
  67. $gmt_mtime))
  68. {
  69. // 與瀏覽器cache中的檔案修改日期一致,傳回304
  70. header(" HTTP/1.1 304 Not Modified");
  71. // 發送客戶端header
  72. header("Content-Encoding :gzip");
  73. sendheader($gmt_mtime, $type);
  74. }
  75. else
  76. {
  77. // 讀取gz檔案輸出
  78. $content = file_get_contents($cache_filename);
  79. // 傳送客戶端header
  80. sendheader($gmt_mtime, $type, strlen( $content));
  81. header("Content-Encoding: gzip");
  82. // 傳送資料
  83. echo $content;
  84. }
  85. }
  86. else
  87. if ( file_exists($filename))
  88. { // 沒有對應的gz檔案
  89. $mtime = mktime();
  90. $gmt_mtime = gmdate('D, d M Y H:i:s', $mtime) . ' GMT';
  91. // 讀取檔案
  92. $content = file_get_contents($filename);
  93. // 去掉空白的部分
  94. // $content = ltrim($content);
  95. // 壓縮檔案內容
  96. $content = gzencode($content, 9, $gzip ? FORCE_GZIP : FORCE_DEFLATE);
  97. // 傳送客戶端header
  98. sendheader($gmt_mtime, $type, strlenheader
  99. sendheader($gmt_mtime, $type, strlenheader
  100. sendheader($gmt_mtime, $type, strlenheader($ ));
  101. header("Content-Encoding: gzip");
  102. // 傳送資料
  103. echo $content;
  104. // 寫入檔案
  105. file_put_contents($cache_filename, $content) ;
  106. }
  107. else
  108. {
  109. header("HTTP/1.0 404 Not Found");
  110. }
  111. }
  112. else
  113. { // 處理不使用Gzip模式下的輸出。原理基本上同上
  114. if (file_exists($filename))
  115. {
  116. $mtime = filemtime($filename);
  117. $gmt_mtime = gmdate('D, d M Y H:i:s', $ mtime) . ' GMT';
  118. if ((isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) && array_shift(explode(';', $_SERVER['HTTP_IF_MODIFIED_SINCE'])) ==g_time)
  119. {
  120. // 與瀏覽器cache中的檔案修改日期一致,回傳304
  121. header("HTTP/1.1 304 Not Modified");
  122. // 傳送客戶端header
  123. sendheader ($gmt_mtime, $type, strlen($content));
  124. header("Content-Encoding :gzip");
  125. }
  126. else
  127. {
  128. // 讀取檔案輸出
  129. $content = file_get_contents($filename);
  130. // 傳送客戶端header
  131. sendheader($gmt_mtime, $type, strlen($content));
  132. // 傳送資料
  133. echo $ content;
  134. }
  135. }
  136. else
  137. {
  138. header("HTTP/1.0 404 Not Found");
  139. }
  140. }
  141. ?>
?>
複製程式碼

附-------------- 說明: 1,在伺服器快取了壓縮過的文件,再次存取減少再壓縮時間,降低CPU佔用率。 2,透過設定客戶端檔案快取時間,降低再次請求次數,可降低85%以上。 3,圖片因為已經是壓縮格式,只是設定客戶端快取時間,不做壓縮處理。

使用方法: 1,伺服器必須支援gzip,Rewrite功能。 2,在.htacess檔案的「RewriteBase /」下方一行新增下面的程式碼: RewriteRule (.*.css$|.*.js$|.*.jpg$|.*.gif$|.*.png$) gzip.php?$1 [L] 3,上傳gzip.php到根目錄 4,在根目錄建cache資料夾,保證可讀寫。



來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板