首頁 >後端開發 >php教程 >php 壓縮多個CSS檔案的實作程式碼

php 壓縮多個CSS檔案的實作程式碼

WBOY
WBOY原創
2016-07-25 08:55:28985瀏覽
  1. /*

  2. * 压缩css文件
  3. * by bbs.it-home.org
  4. /*
  5. header('Content-type: text/css');
  6. ob_start("compress");
  7. function compress($buffer) {
  8. /* remove comments */
  9. $buffer = preg_replace('!/*[^*]**+([^/][^*]**+)*/!', '', $buffer);
  10. /* remove tabs, spaces, newlines, etc. */
  11. $buffer = str_replace(array("rn", "r", "n", "t", ' ', ' ', ' '), '', $buffer);
  12. return $buffer;
  13. }

  14. /* 加载要压缩的css文件 */

  15. include('master.css');
  16. include('typography.css');
  17. include('grid.css');
  18. include('print.css');
  19. include('handheld.css');

  20. ob_end_flush();

复制代码

相比这前介绍的 压缩多个CSS与JS文件的php代码 ,这个相对简单一些,适合作为入门参考。



陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn