您的位置 首页 php

php 压缩CSS代码

将以下代码放置于 style. CSS .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();
 

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

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

文章来源:智云一二三科技

文章标题:php 压缩CSS代码

文章地址:https://www.zhihuclub.com/77111.shtml

关于作者: 智云科技

热门文章

评论已关闭

1条评论

  1. Simply wanna comment that you have a very nice website , I enjoy the style and design it actually stands out.

网站地图