[Back] <?php
// start the output buffer
if(empty($_GET["edit"]) AND empty($_GET["view"]))
ob_start('compress_page');
// function that gets rid of tabs, line breaks, and extra spaces
function compress_page($buffer) {
// remove comments, tabs, spaces, newlines, etc.
$search = array(
//"/\/\*(.*?)\*\/|[\t\r\n]/s" => "",
"/ +\{ +|\{ +| +\{/" => "{",
"/ +\} +|\} +| +\}/" => "}",
"/ +: +|: +| +:/" => ":",
"/ +; +|; +| +;/" => ";",
"/ +, +|, +| +,/" => ",",
'/\>[^\S ]+/s' => '>',
'/[^\S ]+\</s' => '<',
'/(\s)+/s' => '\\1',
'/(form|check|navbar|modal)-/s' => '$1-'
);
$buffer = preg_replace(array_keys($search), array_values($search), $buffer);
return $buffer;
}