使用PHP压缩CSS文件

Posted

tags:

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

  1. <?php
  2. header('Content-type: text/css');
  3. ob_start("compress");
  4. function compress($buffer) {
  5. /* remove comments */
  6. $buffer = preg_replace('!/*[^*]**+([^/][^*]**+)*/!', '', $buffer);
  7. /* remove tabs, spaces, newlines, etc. */
  8. $buffer = str_replace(array("
  9. ", " ", " ", " ", ' ', ' ', ' '), '', $buffer);
  10. return $buffer;
  11. }
  12.  
  13. /* your css files */
  14. include('master.css');
  15. include('typography.css');
  16. include('grid.css');
  17. include('print.css');
  18. include('handheld.css');
  19.  
  20. ?>

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

使用PHP压缩CSS文件

使用PHP压缩CSS文件

缓存 gzip 压缩的 css

php 使用PHP压缩CSS

PHP 使用PHP压缩CSS

PHP 使用PHP压缩多个CSS