欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

关于php 压缩CSS代码的方法

程序员文章站 2022-03-14 11:25:13
...
本篇将会详解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代码的方法,更多相关内容请关注。

相关推荐:

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

PHP MySql 分页实例

PHP中处理Protocol Buffers数据

以上就是关于php 压缩CSS代码的方法的详细内容,更多请关注其它相关文章!

相关标签: css 样式表 php