Created
October 28, 2016 07:48
-
-
Save sdiama/d50e145ccf68bfc41bec32109b47b6fa to your computer and use it in GitHub Desktop.
COMPRESS MULTIPLE CSS FILES
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", "\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(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment