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?
|
|
|
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.)
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
|
|||||
|
|
turn on gzip if you want to do it properly or just do something like
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 |
|||||||||||||
|
|
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 :) |
|||
|
|
|
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:
|
|||||||||||||
|
|
|
|||
|
|