PHP 使用php压缩和缩小CSS
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 使用php压缩和缩小CSS相关的知识,希望对你有一定的参考价值。
<?php
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('style.css');
# include('print.css');
# include('handheld.css');
ob_end_flush();
?>
以上是关于PHP 使用php压缩和缩小CSS的主要内容,如果未能解决你的问题,请参考以下文章
使用正则表达式缩小/压缩 CSS?
PHP 使用get查询字符串组合和缩小CSS
PHP 缩小和组合CSS文件
用PHP缩小CSS
PHP 缩小CSS
更新css文件并缩小它