使用PHP压缩CSS文件

Posted

tags:

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

Paste the code in a file named style.php. Don’t forget to include your css files . Once done, open your html document and import style.php as you’ll import a css stylesheet.
  1. header('Content-type: text/css');
  2. ob_start("compress");
  3. function compress($buffer) {
  4. /* remove comments */
  5. $buffer = preg_replace('!/*[^*]**+([^/][^*]**+)*/!', '', $buffer);
  6. /* remove tabs, spaces, newlines, etc. */
  7. $buffer = str_replace(array("
  8. ", " ", " ", " ", ' ', ' ', ' '), '', $buffer);
  9. return $buffer;
  10. }
  11.  
  12. /* your css files */
  13. include('master.css');
  14. include('typography.css');
  15. include('grid.css');
  16. include('print.css');
  17. include('handheld.css');
  18.  

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

使用PHP压缩CSS文件

缓存 gzip 压缩的 css

使用PHP压缩CSS文件

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

PHP 压缩多个CSS文件

PHP 压缩gzip中的Javascript或CSS文件