- Overview
- Articles & Snippets
- HTML Minifier
HTML Minifier
Posted by Cătălin on Fri, 14 Jul 2017
HTML Minifier - Minify HTML and any CSS or JS included in your markup
This will do the magic:
//start HTML Minifier
function sanitize_output($html) {
$search = array(
'/\>[^\S ]+/s', // strip whitespaces after tags, except space
'/[^\S ]+\/' // Remove HTML comments
);
$replace = array(
'>',
'<',
'\\1',
''
);
$html = preg_replace($search, $replace, $html);
return $html;
}
ob_start("sanitize_output");
// end HTML Minifier
web design
- Overview
- Articles & Snippets
- HTML Minifier