Horje

How to minify html code of Your Website

Keep following code very top of your side page.

Example: PHP
<?php
function minify_output($buffer){
    $search = array('/\>[^\S ]+/s','/[^\S ]+\</s','/(\s)+/s');
    $replace = array('>','<','\\1');
    if (preg_match("/\<html/i",$buffer) == 1 && preg_match("/\<\/html\>/i",$buffer) == 1) {
        $buffer = preg_replace($search, $replace, $buffer);
    }
    return $buffer;
}
ob_start("minify_output");?>

Output should be:

How to minify html code of Your Website




Type:
php
Category:
Web Tutorial
Sub Category:
PHP Cache Tutorial
Uploaded by:
Admin