首页 > 互联资讯 > 技术交流  > 

php 压缩CSS代码( php 递归删除目录下的文件)

php 压缩CSS代码( php 递归删除目录下的文件)

将以下代码放置于 style.css.php 文件中,不要忘记包含你需要的 css 文件:

<?phpheader('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文件:

<link rel="stylesheet" type="text/css" media="screen" href="style.css.php"/>

php 压缩CSS代码( php 递归删除目录下的文件)由讯客互联技术交流栏目发布,感谢您对讯客互联的认可,以及对我们原创作品以及文章的青睐,非常欢迎各位朋友分享到个人网站或者朋友圈,但转载请说明文章出处“php 压缩CSS代码( php 递归删除目录下的文件)