php 压缩多个CSS文件
压缩多个CSS文件 [代码片段(20行)]
header('Content-type: text/css'); ob_start("compress"); function compress($buffer) { /* remove comments */ $buffer = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $buffer); /* remove tabs, spaces, newlines, etc. */ $buffer = str_replace(array("\r\n", "\r", "\n", "\t", ' ', ' ', ' '), '', $buffer); return $buffer; } /* your css files */ include('master.css'); include('typography.css'); include('grid.css'); include('print.css'); include('handheld.css'); ob_end_flush();
- 上一篇:PHP提取字符串中的图片地址
- 下一篇:PHP计算当前日期几天或后几天日期的函数
精彩图集
精彩文章