当前位置 : 主页 > 网络编程 > PHP >

php压缩CSS文件

来源:互联网 收集:自由互联 发布时间:2021-07-03
一次压缩多个CSS文件 header('Content-type: text/css');ob_start("compress");function compress($buffer) {/* remove comments */$buffer = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $buffer);/* remove tabs, spaces, newlines, etc. *

一次压缩多个CSS文件

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(); 
网友评论