Return to Snippet

Revision: 60316
at November 2, 2012 01:23 by nshakin


Initial Code
<?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();
?>

Initial URL
http://www.catswhocode.com/blog/3-ways-to-compress-css-files-using-php

Initial Description
Combine multiple css files into 1 file that has been stripped of whitespace and comments.

Initial Title
CSS Combine and Compress

Initial Tags


Initial Language
PHP