PHP 缩小和组合CSS文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 缩小和组合CSS文件相关的知识,希望对你有一定的参考价值。

/*

  USING THIS FILE

  1. Add the CSS files you want included to the $file array. */

  $file[] = 'reset.css';
  $file[] = 'typography.css';
  $file[] = 'design.css';

/*
  2. Save this file.

  3. Point your HTML files to this script, eg.
     <link rel="stylesheet" href="/this-file.php" />

  4. Save the HTML file and refresh browser.

*/

header('Content-type: text/css; Charset=utf-8');

function minifyCSS($f)
{
  return preg_replace(array('/\/\*[\s\S]*?\*\//','/\s*([;:{},>+])\s*/',
  '/;}/','/\r?\n/'),array('','\1','}',''),file_get_contents($f));
}
foreach ($file as $name)
{
  if (file_exists($name))
  {
    echo minifyCSS($name);
  }
}

以上是关于PHP 缩小和组合CSS文件的主要内容,如果未能解决你的问题,请参考以下文章

更新css文件并缩小它

在 .net 中缩小和合并文件

PHP 使用php压缩和缩小CSS

用php压缩和缩小CSS

在 CodeIgniter 中有效地缩小 CSS 和 JS

PHP 自动缩小。有没有?