Compress your HTML code using PHP

Posted on April 2, 2009 by Ashley

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);
	}
?>

This entry was posted in PHP, Tutorials, Uncategorized and tagged , , . Bookmark the permalink.
Comments
8 discussions around Compress your HTML code using PHP
  1. Jutta says:

    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

  2. Ashley says:

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

  3. Ryan Maughan says:

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

    Cheers,
    Ryan.

  4. Ashley says:

    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.

  5. Ian says:

    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?

  6. Ian says:

    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?

  7. Ashley says:

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

  8. Balaji J H says:

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

    Right???

Leave a Reply

Your email address will not be published. Required fields are marked *

*

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

Subscribers
1,250
Twitter
510
Comments
1,207
Posts
125