Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am looking for a php script or class that can minify my php page html output like google page speed does.

How can i do this?

share|improve this question

5 Answers

up vote 23 down vote accepted

Consider the following link to minify Javascript/CSS files.

http://code.google.com/p/minify/

Tell Apache to deliver HTML with GZip - this generally reduces the response size by about 70%. (If you use Apache, the module configuring gzip depends on your version: Apache 1.3 uses mod_gzip while Apache 2.x uses mod_deflate.)

Accept-Encoding: gzip, deflate

Content-Encoding: gzip

Use the following snippet to remove white-spaces from the HTML with the help ob_start's buffer: http://ru.php.net/manual/en/function.ob-start.php#71953

<?php

function sanitize_output($buffer)
{
    $search = array(
        '/\>[^\S ]+/s', //strip whitespaces after tags, except space
        '/[^\S ]+\</s', //strip whitespaces before tags, except space
        '/(\s)+/s'  // shorten multiple whitespace sequences
        );
    $replace = array(
        '>',
        '<',
        '\\1'
        );
    $buffer = preg_replace($search, $replace, $buffer);

    return $buffer;
}

ob_start("sanitize_output");

?>
share|improve this answer
2  
This is a good function but be wary of it if you use PRE tags, sometimes newlines will be removed there. – fedmich Mar 3 at 2:30

turn on gzip if you want to do it properly or just do something like

$this->output = preg_replace(
    array(
        '/ {2,}/',
        '/<!--.*?-->|\t|(?:\r?\n[ \t]*)+/s'
    ),
    array(
        ' ',
        ''
    ),
    $this->output
);

this removes about 30% of the page size buy turning your html into one line, no tabs, no new lines, no comments. mileage may vary

share|improve this answer
Doing both would bring down the amount of bytes needed even further. – Wander Nauta Jun 3 '11 at 9:49
actually doing both is the same as doing gzip, on a 700kb page gzip will take it down to about 400kb and the preg_replace() about 450kb (all depending on the content) both will be like 399kb as gzip removes the spaces the same and then compresses it – dogmatic69 Jun 3 '11 at 9:52
i already use if (substr_count($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip')) ob_start("ob_gzhandler"); else ob_start(); Is it necessary to add this? – m3tsys Jun 3 '11 at 9:58
gzip needs to be set on your server, if it is working you will have something like seo.co.uk/seo-news/wp-content/uploads/2010/10/… – dogmatic69 Jun 3 '11 at 10:20
1  
This could be potentially dangerous, since it also would remove IE conditionals... - you would need to change it to /<!--(?![if).*?-->/ – Katai Nov 8 '12 at 13:37
show 5 more comments

you can check out this set of classes: http://code.google.com/p/minify/source/browse/trunk/min/lib/Minify#Minify , you'll find html/css/js minification classes there.

you can also try this: http://code.google.com/p/htmlcompressor/

Good luck :)

share|improve this answer

You can look into HTML TIDY - http://uk.php.net/tidy

It can be installed as a PHP module and will (correctly, safely) strip whitespace and all other nastiness, whilst still outputting perfectly valid HTML / XHTML markup. It will also clean your code, which can be a great thing or a terrible thing, depending on how good you are at writing valid code in the first place ;-)

Additionally, you can gzip the output using the following code at the start of your file:

ob_start('ob_gzhandler');
share|improve this answer
the problem is that the site will be hosted on shared and i will not have access to install such modules. – m3tsys Jun 3 '11 at 10:00
Chances are, it will already be installed. Check phpinfo()... At the very least zlib should be installed allowing you to use the ob_gzhandler. – Rudi Visser Jun 3 '11 at 10:01
i already use if (substr_count($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip')) ob_start("ob_gzhandler"); else ob_start(); isn't it the same thing? – m3tsys Jun 3 '11 at 10:03
1  
Yes it is, you really don't need the else ob_start() part, nor the gzip check... ob_gzhandler detects whether the browser supports any compression method internally. Simply having ob_start('ob_gzhandler'); will suffice. – Rudi Visser Jun 3 '11 at 10:10
Any possibility of TIDY being slower than the other answers here because of the extra parsing overhead? Might be good for development - then you can correct those HTML errors in the actual source code - but I question if this is the best choice for production. – Matt Browne Feb 26 at 3:57
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.