首頁  >  文章  >  後端開發  >  php啟用gzip壓縮加速網站

php啟用gzip壓縮加速網站

WBOY
WBOY原創
2016-07-25 08:45:07989瀏覽
複製程式碼

說明:

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

使用方法:

伺服器必須支援gzip,Rewrite功能。 在.htacess檔案的「RewriteBase /」下方一行新增下面的程式碼RewriteRule (..css$|..js$|..jpg$|..gif$|. *.png$) gzip.php?$1 上傳gzip.php到根目錄

4,在根目錄建cache資料夾,保證可讀寫。

  1. /**
  2. * @author Seraphim
  3. * @copyright 2012
  4. */
  5. //
  6. function sendheader ($last_modified, $p_type, $content_length = 0)
  7. {
  8. // 設定客戶端快取有效時間
  9. header("Expires: " . gmdate("D, d M Y H:i:s", time() 15360000) . "GMT");
  10. header("Cache-Control: max-age=315360000");
  11. header("Pragma: ");
  12. // 設定最後修改時間
  13. header("Last-Modified: " . $last_modified);
  14. // 設定檔案類型資訊
  15. header($p_type);
  16. header("Content-Length: " . $content_length);
  17. }
  18. define('ABSPATH', dirname(__file__) . '/');
  19. $cache = true;
  20. $cachedir = 'cache/'; //存放gz檔案的目錄,確保可寫入
  21. if (empty($_SERVER['QUERY_STRING']))
  22. exit();
  23. $gzip = strstr($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip');
  24. if
  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); $gmt_mtime = gmdate('D, d M Y H:i:s', $mtime) . ' GMT';
  65. if ((isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) && array_shift(explode('; $_SERVER['HTTP_IF_MODIFIED_SINCE'])) ==
  66. $gmt_mtime))
  67. {
  68. // 與瀏覽器cache中的檔案修改日期一致,回傳304
  69. header("HTTP/1.1 304 Not Modified");
  70. // 發送客戶端header
  71. header("Content-Encoding :gzip");
  72. sendheader($gmt_mtime, $type);
  73. }
  74. else
  75. else
  76. }
  77. else {
  78. // 讀取gz檔案輸出
  79. $content = file_get_contents($cache_filename);
  80. // 傳送客戶端header
  81. sendheader($gmt_mtime, $type, strlen($content)) ;
  82. header("Content-Encoding: gzip");
  83. // 傳送資料
  84. echo $content;
  85. }
  86. }
  87. else
  88. if (file_exists($filename ))
  89. { // 沒有對應的gz檔
  90. $mtime = mktime();
  91. $gmt_mtime = gmdate('D, d M Y H:i:s', $mtime) . ' GMT';
  92. // 讀取檔案
  93. $content = file_get_contents($filename);
  94. // 去掉空白的部分
  95. // $content = ltrim($content);
  96. // 壓縮檔案內容
  97. $content = gzencode($content, 9, $gzip ? FORCE_GZIP : FORCE_DEFLATE);
  98. // 傳送客戶端header
  99. sendheader($gmt_mtime, $type, strlen($content)); 🎜> header("Content-Encoding: gzip");
  100. // 傳送資料
  101. echo $content;
  102. // 寫入檔案
  103. file_put_contents($cache_filename, $
  104. }
  105. else
  106. {
  107. header("HTTP/1.0 404 Not Found");
  108. }
  109. }
  110. else
  111. { // 處理不使用Gzip模式下的輸出。原理基本上同上
  112. if (file_exists($filename))
  113. {
  114. $mtime = filemtime($filename);
  115. $gmt_mtime = gmdate('D, d M Y H:i:s', $ mtime) . ' GMT';
  116. if ((isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) && array_shift(explode(';', $_SERVER['HTTP_IF_MODIFIED_SINCE'])) time)>
  117. {
  118. // 與瀏覽器cache中的檔案修改日期一致,回傳304
  119. header("HTTP/1.1 304 Not Modified");
  120. // 傳送客戶端header
  121. sendheader ($gmt_mtime, $type, strlen($content));
  122. header("Content-Encoding :gzip");
  123. }
  124. else
  125. {
  126. // 讀取檔案輸出
  127. else
  128. {
  129. // 讀取檔案輸出
  130. $content = file_get_contents($filename);
  131. // 傳送客戶端header
  132. sendheader($gmt_mtime, $type, strlen($content));
  133. // 傳送資料
  134. echo $ content;
  135. }
  136. }
  137. else
  138. {
header("HTTP/1.0 404 Not Found");
}}?>
?>
php、gzip


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn