Skip to content

Instantly share code, notes, and snippets.

@alanpilloud
Last active August 29, 2015 14:22
Show Gist options
  • Save alanpilloud/401ca3bbd3a1e0ce9cd5 to your computer and use it in GitHub Desktop.
Save alanpilloud/401ca3bbd3a1e0ce9cd5 to your computer and use it in GitHub Desktop.
Minify HTML output
<?php
/*
* Will minify HTML
*/
ob_start(function($b){return preg_replace(['/\>[^\S ]+/s','/[^\S ]+\</s','/(\s)+/s'],['>','<','\\1'],$b);});
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment