說明:
在伺服器快取了壓縮過的文件,再次存取減少再壓縮時間,降低CPU佔用率。
透過設定客戶端檔案快取時間,降低再次請求次數,可降低85%以上。
圖片因為已經是壓縮格式,只是設定客戶端快取時間,不做壓縮處理。
使用方法:
伺服器必須支援gzip,Rewrite功能。
在.htacess檔案的「RewriteBase /」下方一行新增下面的程式碼RewriteRule (..css$|..js$|..jpg$|..gif$|. *.png$) gzip.php?$1
上傳gzip.php到根目錄
4,在根目錄建cache資料夾,保證可讀寫。
-
/**
- * @author Seraphim
- * @copyright 2012
- */
- //
- function sendheader ($last_modified, $p_type, $content_length = 0)
- {
- // 設定客戶端快取有效時間
- header("Expires: " . gmdate("D, d M Y H:i:s", time() 15360000) . "GMT");
- header("Cache-Control: max-age=315360000");
- header("Pragma: ");
- // 設定最後修改時間
- header("Last-Modified: " . $last_modified);
- // 設定檔案類型資訊
- header($p_type);
- header("Content-Length: " . $content_length);
- }
- define('ABSPATH', dirname(__file__) . '/');
- $cache = true;
- $cachedir = 'cache/'; //存放gz檔案的目錄,確保可寫入
- if (empty($_SERVER['QUERY_STRING']))
- exit();
- $gzip = strstr($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip');
- if
- if (empty($gzip))
- $cache = false;
- $key = array_shift(explode('?', $_SERVER['QUERY_STRING']));
- $key = str_replace('.. /', '', $key);
- $filename = ABSPATH . $key;
- $symbol = '_';
- $rel_path = str_replace(ABSPATH, '', dirname($filename)) ;
- $namespace = str_replace('/', $symbol, $rel_path);
- $cache_filename = ABSPATH . $cachedir . $namespace . $symbol . basename($filename) .
- '.gz' ; //產生gz檔案路徑
- $ext = array_pop(explode('.', $filename)); //根據後綴判斷檔案類型資訊
- $type = "Content-type: text/html"; //預設的檔案類型
- switch ($ext)
- {
- case 'css':
- $type = "Content-type: text/css";
- break;
- case 'js':
- $type = "Content-type: text/javascript";
- break;
- case 'gif':
- $cache = false;
- $type = "Content -type: image/gif";
- break;
- case 'jpg':
- $cache = false;
- $type = "Content-type: image/jpeg";
- break;
- case 'png':
- $cache = false;
- $type = "Content-type: image/png";
- break;
- default:
- exit();
- }
- if ($cache)
- {
- if (file_exists($cache_filename))
- { // 假如存在gz檔案
- $mtime = filemtime($cache_filename); $gmt_mtime = gmdate('D, d M Y H:i:s', $mtime) . ' GMT';
- if ((isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) && array_shift(explode('; $_SERVER['HTTP_IF_MODIFIED_SINCE'])) ==
- $gmt_mtime))
- {
- // 與瀏覽器cache中的檔案修改日期一致,回傳304
- header("HTTP/1.1 304 Not Modified");
- // 發送客戶端header
- header("Content-Encoding :gzip");
- sendheader($gmt_mtime, $type);
- }
- else
- else
- }
- else {
- // 讀取gz檔案輸出
- $content = file_get_contents($cache_filename);
- // 傳送客戶端header
- sendheader($gmt_mtime, $type, strlen($content)) ;
- header("Content-Encoding: gzip");
- // 傳送資料
- echo $content;
- }
- }
- else
- if (file_exists($filename ))
- { // 沒有對應的gz檔
- $mtime = mktime();
- $gmt_mtime = gmdate('D, d M Y H:i:s', $mtime) . ' GMT';
- // 讀取檔案
- $content = file_get_contents($filename);
- // 去掉空白的部分
- // $content = ltrim($content);
- // 壓縮檔案內容
- $content = gzencode($content, 9, $gzip ? FORCE_GZIP : FORCE_DEFLATE);
- // 傳送客戶端header
- sendheader($gmt_mtime, $type, strlen($content)); 🎜> header("Content-Encoding: gzip");
- // 傳送資料
- echo $content;
- // 寫入檔案
- file_put_contents($cache_filename, $
- }
- else
- {
- header("HTTP/1.0 404 Not Found");
- }
- }
- else
- { // 處理不使用Gzip模式下的輸出。原理基本上同上
- if (file_exists($filename))
- {
- $mtime = filemtime($filename);
- $gmt_mtime = gmdate('D, d M Y H:i:s', $ mtime) . ' GMT';
- if ((isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) && array_shift(explode(';', $_SERVER['HTTP_IF_MODIFIED_SINCE'])) time)>
- {
- // 與瀏覽器cache中的檔案修改日期一致,回傳304
- header("HTTP/1.1 304 Not Modified");
- // 傳送客戶端header
- sendheader ($gmt_mtime, $type, strlen($content));
- header("Content-Encoding :gzip");
- }
- else
- {
- // 讀取檔案輸出
- else
- {
- // 讀取檔案輸出
- $content = file_get_contents($filename);
- // 傳送客戶端header
- sendheader($gmt_mtime, $type, strlen($content));
- // 傳送資料
- echo $ content;
- }
- }
- else
- {
header("HTTP/1.0 404 Not Found"); } }?> ?>
|
複製程式碼