PHP 压缩多个CSS文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 压缩多个CSS文件相关的知识,希望对你有一定的参考价值。
<?php
header('Content-type: text/css');
ob_start('compress_css');
function compress_css($buffer) {
/* remove comments in css file */
$buffer = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $buffer);
/* also remove tabs, spaces, newlines, etc. */
$buffer = str_replace(array("\r", "\n", "
", "\t", ' ', ' ', ' '), '', $buffer);
return $buffer;
}
/* a list of your css files */
include('style.css');
include('css/menu.css');
include('css/typography.css');
include('css/print.css');
include('inc/css/footer.css');
ob_end_flush();
?>
以上是关于PHP 压缩多个CSS文件的主要内容,如果未能解决你的问题,请参考以下文章
PHP 使用PHP压缩多个CSS
PHP 使用PHP压缩CSS文件
PHP 使用PHP压缩CSS文件
使用PHP压缩CSS文件
PHP 生成压缩包,PHP多个文件合并成压缩包,PHP压缩包, PHP ZipArchive thinkphp 将多个文件合并成压缩包
使用PHP压缩CSS文件