用php压缩和缩小CSS

Posted

tags:

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

Use always
  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('style.css');
  15. # include('print.css');
  16. # include('handheld.css');
  17.  
  18. ?>

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

使用正则表达式缩小/压缩 CSS?

用PHP缩小CSS

Gzip 与缩小

Google 的 CDN 上是不是有 jQuery UI CSS 主题的缩小/压缩版本?

用PHP压缩CSS

PHP 缩小和组合CSS文件