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('master.css');
include('typography.css');
include('grid.css');
include('print.css');
include('handheld.css');
ob_end_flush();
?>
以上是关于PHP 使用PHP压缩CSS文件的主要内容,如果未能解决你的问题,请参考以下文章
使用PHP压缩CSS文件
使用PHP压缩CSS文件
PHP 压缩多个CSS文件
PHP 压缩gzip中的Javascript或CSS文件
php 使用PHP压缩CSS
PHP 使用PHP压缩CSS