关于php 压缩CSS代码的方法

jacklove
发布: 2023-03-27 11:14:02
原创
1591 人浏览过

本篇将会详解php 压缩CSS代码的方法。

将以下代码放置于 style.css.php 文件中,不要忘记包含你需要的 css 文件:

<?php
header(&#39;Content-type: text/css&#39;);ob_start("compress");function compress($buffer) {
  /* remove comments */
  $buffer = preg_replace(&#39;!/\*[^*]*\*+([^/][^*]*\*+)*/!&#39;, &#39;&#39;, $buffer);
  /* remove tabs, spaces, newlines, etc. */
  $buffer = str_replace(array("
", "\r", "\n", "\t", &#39;  &#39;, &#39;    &#39;, &#39;    &#39;), &#39;&#39;, $buffer);
  return $buffer;}
 /* your css files */include(&#39;master.css&#39;);include(&#39;typography.css&#39;);include(&#39;grid.css&#39;);include(&#39;print.css&#39;);include(&#39;handheld.css&#39;);
 ob_end_flush();
登录后复制

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

<link rel="stylesheet" type="text/css" media="screen" href="style.css.php"/>
登录后复制

本篇讲解了关于php 压缩CSS代码的方法,更多相关内容请关注php中文网。

相关推荐:

PHP接收json,并将接收数据插入数据库

PHP MySql 分页实例

PHP中处理Protocol Buffers数据

以上是关于php 压缩CSS代码的方法的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板