Compress your HTML code using PHP

2 April 2009| 8 Comments| Print

When we write code we love to format it nicely adding tabs, line breaks and indentations, but the end user isn’t interested in how lovely the source code is, they just want the page content, so this script strips out all the line breaks and spaces in your code and puts it on one line, compressing your code and making it faster.


<?php
	//  start output buffer
	ob_start('compress_html');
?>

<!-- all xhtml content here -->

<?php
	// end output buffer and echo the page content
	ob_end_flush();

	//  this function gets rid of tabs, line breaks, and white space
	function compress_html($compress)
	{
		$i = array('/>[^S ]+/s','/[^S ]+</s','/(s)+/s');
		$ii = array('>','<','1');
		return preg_replace($i, $ii, $compress);
	}
?>

Share:
  • Print
  • Digg
  • del.icio.us
  • Facebook
  • StumbleUpon
  • Google Bookmarks
  • DZone
  • Reddit
  • Netvibes

8 Comments

  • Jutta

    Hello,
    i dont anderstand where to put this php code.
    In the function,head,index?
    In the body tag?
    Will be great if you will explain it to me.
    Thanks
    Jutta

  • Ashley

    @jutta You need to add the code at the top of your page before any other code

  • Ryan Maughan

    Where do you call the function?
    All it’s doing, is starting the buffer, echoing the content, then ending the buffer.

    Cheers,
    Ryan.

  • Ashley

    Hey Ryan, yeah your right however its stripping out all the white space in your code when it renders the page therefore compressing your code down to one line. you don’t call the function. You simply wrap your HTML code in the PHP buffer.

  • Ian

    I was actually looking to figure out a way to do something similar to this. Ideally I just wanted a php script which would scan through the html doc and remove all HTML comments. I use a lot of comments whilst in development but don’t necessarily want these to go live and the manual way of stripping them out is a bit of a chore.

    Any chance you could show how I can alter the script to do this?

  • Ian

    This script doesn’t seem to work for me. I’ve literally followed instructions and placed the top code at the very top of the .php page and the bottom at the very bottom with no space and HTML in between. However on output all comments, line breaks and white space still remain. Is there something else I’m missing?

  • Ashley

    @Ian Sorry my mistake there was an error in the code! should work fine now, let me know how you get on

  • Balaji J H

    Hi,
    Whether i need to add the html codes instead of

    Right???

Leave a comment...

Add your comment below, or trackback from your own site. You can also subscribe to these comments via RSS.

Be nice. Keep it clean. Stay on topic. No spam.

You can use these tags:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

This is a Gravatar-enabled site. To get your own globally-recognized-avatar, register at Gravatar.

Your Ad Here