>  기사  >  백엔드 개발  >  PHP는 웹사이트 속도를 높이기 위해 gzip 압축을 활성화합니다.

PHP는 웹사이트 속도를 높이기 위해 gzip 압축을 활성화합니다.

WBOY
WBOY원래의
2016-07-25 08:45:07989검색

설명:

압축된 파일은 서버에 캐시되므로 다시 액세스할 때 재압축 시간과 CPU 사용량이 줄어듭니다. 클라이언트 파일 캐시 시간을 설정하고 재요청 횟수를 줄이면 85% 이상 줄일 수 있습니다. 이미지가 이미 압축된 형식이기 때문에 클라이언트 캐시 시간만 설정되고 압축은 수행되지 않습니다.

사용방법 :

서버는 gzip 및 Rewrite 기능을 지원해야 합니다. 다음 코드를 추가합니다. RewriteRule (..css$|..js$|..jpg$|..gif$|. *.png$) gzip.php?$1 gzip.php를 루트 디렉터리에 업로드

4. 읽기 및 쓰기가 가능하도록 루트 디렉터리에 캐시 폴더를 만듭니다.

  1. /**
  2. * @author Seraphim
  3. * @copyright 2012
  4. */
  5. //
  6. 함수 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. // 마지막 수정 사항 설정 time
  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 (비어 있음($gzip))
  25. $cache = false;
  26. $key = array_shift(explode('?', $_SERVER['QUERY_STRING']));
  27. $key = str_replace( '../', '', $key);
  28. $filename = ABSPATH . $key;
  29. $symbol = '_';
  30. $rel_path = str_replace(ABSPATH, '', dirname($ filename));
  31. $namespace = str_replace('/', $symbol, $rel_path);
  32. $cache_filename = ABSPATH . $cachedir . $namespace .
  33. ' .gz'; //gz 파일 경로 생성
  34. $ext = array_pop(explode('.', $filename)) //접미사를 기준으로 파일 형식 정보 판단
  35. $type = "Content-type: text / html"; //기본 파일 유형
  36. switch ($ext)
  37. {
  38. case 'css':
  39. $type = "Content-type: text/css";
  40. break;
  41. 케이스 'js':
  42. $type = "콘텐츠 유형: text/javascript";
  43. break;
  44. 케이스 'gif':
  45. $cache = false;
  46. $type = "콘텐츠 유형: 이미지/gif";
  47. break;
  48. 케이스 'jpg':
  49. $cache = false;
  50. $type = "콘텐츠 유형: image/jpeg";
  51. break;
  52. 케이스 'png':
  53. $cache = false;
  54. $type = "콘텐츠 유형: 이미지/png";
  55. break;
  56. 기본값:
  57. 종료( );
  58. }
  59. if ($cache)
  60. {
  61. if (file_exists($cache_filename))
  62. { // gz 파일이 존재하는 경우
  63. $mtime = filemtime($cache_filename) ;
  64. $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. // 브라우저 캐시의 파일 수정 날짜와 일치하여 304
  69. 헤더를 반환합니다("HTTP /1.1 304 Not Modified");
  70. // 클라이언트 헤더 보내기
  71. header("Content-Encoding :gzip");
  72. sendheader($gmt_mtime, $type);
  73. }
  74. else
  75. {
  76. // gz 파일 출력 읽기
  77. $content = file_get_contents($cache_filename);
  78. // 클라이언트 헤더 보내기
  79. sendheader($gmt_mtime, $type, strlen($ content)) ;
  80. header("Content-Encoding: gzip");
  81. // 데이터 보내기
  82. echo $content;
  83. }
  84. }
  85. else
  86. if (file_exists ($filename ))
  87. { // 해당 gz 파일이 없습니다
  88. $mtime = mktime();
  89. $gmt_mtime = gmdate('D, d M Y H:i:s', $mtime) . ;
  90. // 파일 읽기
  91. $content = file_get_contents($filename);
  92. // 빈 부분 제거
  93. // $content = ltrim($content);
  94. / / 압축 file content
  95. $content = gzencode($content, 9, $gzip ? FORCE_GZIP : FORCE_DEFLATE);
  96. // 클라이언트 헤더 보내기
  97. sendheader($gmt_mtime, $type, strlen($content) );
  98. header("Content-Encoding: gzip");
  99. // 데이터 보내기
  100. echo $content;
  101. // 파일 쓰기
  102. file_put_contents($cache_filename, $content)
  103. }
  104. else
  105. {
  106. header("HTTP/1.0 404 Not Found");
  107. }
  108. }
  109. else
  110. { // 출력 처리에 Gzip 모드를 사용하지 마세요. 아래에. 원칙은 기본적으로 위와 같습니다
  111. if (file_exists($filename))
  112. {
  113. $mtime = filemtime($filename);
  114. $gmt_mtime = gmdate('D, d M Y H:i :s', $ mtime) . ' GMT';
  115. if ((isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) && array_shift(explode(';', $_SERVER['HTTP_IF_MODIFIED_SINCE'])) ==
  116. $gmt_mtime))
  117. {
  118. // 브라우저 캐시의 파일 수정 날짜와 일치하여 304
  119. 헤더를 반환합니다("HTTP/1.1 304 Not Modified");
  120. // 클라이언트 헤더 보내기
  121. sendheader ($gmt_mtime, $type, strlen($content));
  122. header("Content-Encoding :gzip");
  123. }
  124. else
  125. {
  126. // 읽기 파일 출력
  127. $content = file_get_contents($filename);
  128. // 클라이언트 헤더 보내기
  129. sendheader($gmt_mtime, $type, strlen($content));
  130. // 데이터 보내기
  131. echo $ content;
  132. }
  133. }
  134. else
  135. {
  136. header("HTTP/1.0 404 Not Found");
  137. }
  138. }
  139. ?>
코드 복사

PHP, gzip


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.