php中的gzip文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php中的gzip文件相关的知识,希望对你有一定的参考价值。

  1. <?php
  2. if(extension_loaded('zlib')){
  3. ob_start('ob_gzhandler');
  4. }
  5. header ('content-type: text/css; charset: UTF-8');
  6. header ('cache-control: must-revalidate');
  7. $offset = 60 * 60;
  8. $expire = 'expires: ' . gmdate ('D, d M Y H:i:s', time() + $offset) . ' GMT';
  9. header ($expire);
  10. ob_start('compress');
  11. function compress($buffer) {
  12. // remove comments
  13. $buffer = preg_replace('!/*[^*]**+([^/][^*]**+)*/!', '', $buffer);
  14. return $buffer;
  15. }
  16.  
  17. // list CSS files to be included
  18. include('baseline.css');
  19. include('styles.css');
  20.  
  21. ?>

以上是关于php中的gzip文件的主要内容,如果未能解决你的问题,请参考以下文章

PHP 压缩gzip中的Javascript或CSS文件

php中的gzip文件

PHP中的Gzip CSS文件

apache中的gzip文件

对于 php flush - 如何禁用特定文件的 gzip?

PHP 在PHP文件中使用mod_gzip