Skip to content

Instantly share code, notes, and snippets.

@luckyshot
Created June 2, 2015 09:22
Show Gist options
  • Save luckyshot/3ac76a3f6addf718a854 to your computer and use it in GitHub Desktop.
Save luckyshot/3ac76a3f6addf718a854 to your computer and use it in GitHub Desktop.
Compress HTML output
<?php
function compressHtml($html) {
return preg_replace( ['/\>[^\S ]+/s', '/[^\S ]+\</s', '/(\s)+/s'], ['>', '<', '\\1'], $html );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment