Skip to content

Instantly share code, notes, and snippets.

@xposedbones
Created November 29, 2016 20:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xposedbones/ffad7c245f052d2748dc16e5bba3f22a to your computer and use it in GitHub Desktop.
Save xposedbones/ffad7c245f052d2748dc16e5bba3f22a to your computer and use it in GitHub Desktop.
<?php
function ob_html_compress($buf){
return preg_replace(array('/<!--(.*)-->/Uis',"/[[:blank:]]+/"),array('',' '),str_replace(array("\n","\r","\t"),'',$buf));
}
// Usage
ob_start('ob_html_compress');
get_header();
. . .
get_footer();
ob_end_flush();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment