Skip to content

Instantly share code, notes, and snippets.

@gettocat
Created August 23, 2015 20:12
Show Gist options
  • Save gettocat/3dc67bcfc9b6dfb1132a to your computer and use it in GitHub Desktop.
Save gettocat/3dc67bcfc9b6dfb1132a to your computer and use it in GitHub Desktop.
compress html code
<?php
function sanitize_output($buffer) {
$search = array(
'/\>[^\S ]+/s', // вырезаем после тегов все отступы, кроме пробелов
'/[^\S ]+\</s', // вырезаем перед тегами все отступы, кроме пробелов
'/(\s)+/s' // заменяем несколько пробелов одним
);
$replace = array(
'>',
'<',
'\\1'
);
return preg_replace($search, $replace, $buffer);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment