用PHP压缩CSS

Posted

tags:

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

Start your CSS files with the following php (and name it style.php)

include it with:
  1. <?php
  2. ob_start ("ob_gzhandler");
  3. header("Content-type: text/css; charset: UTF-8");
  4. header("Cache-Control: must-revalidate");
  5. $offset = 60 * 60 ;
  6. $ExpStr = "Expires: " .
  7. gmdate("D, d M Y H:i:s",
  8. time() + $offset) . " GMT";
  9. header($ExpStr);
  10. ?>
  11.  
  12. body { color: red; }

以上是关于用PHP压缩CSS的主要内容,如果未能解决你的问题,请参考以下文章

超级有用的9个PHP代码片段

PHP必用代码片段

(linux服务器)apache开启gzip的配置以及效果对比

缓存 gzip 压缩的 css

python颜色压缩的结果颜色比保存颜色深

php 使用PHP压缩CSS