php 压缩CSS代码

2022-10-11 21:16:51 130 0
魁首哥

将以下代码放置于 style. CSS .php 文件中,不要忘记包含你需要的 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", "\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();
 

然后在 HTML 页面中在引入样式的地方引入该php文件:


 

收藏
分享
海报
0 条评论
130
上一篇:干货:PHP与大数据开发实践 下一篇:PHP设计模式之享元模式

本站已关闭游客评论,请登录或者注册后再评论吧~

忘记密码?

图形验证码