电子技术学习网 编程教程 php 压缩CSS代码(48秒前已更新2022)

php 压缩CSS代码(48秒前已更新2022)

本文是关于【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代码,更多相关编程教程请关注电子技术学习网站!

上一篇
下一篇
返回顶部