Fist : save out html and call function when page load done.
Put below code before show your html code.
ob_start('html_compression_finish');
Next is function to remove all new line code.function removeWhiteSpace($html, $full_html)
{
$html = str_replace("\t", ' ', $html);
$html = str_replace("\r", ' ', $html);
$html = str_replace("\n", ' ', $html);
// This is over twice the speed of a RegExp
while (strpos($html, ' ') !== false)
{
$html = str_replace(' ', ' ', $html);
}
return $html;
}
Finnally put below code when your html loaded,(Put in footer,....) function minifyHTML($html)
{
$pattern = '/<(?