Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Padilo300/387b7afd31d668bff91b78bb4d5b9074 to your computer and use it in GitHub Desktop.
Save Padilo300/387b7afd31d668bff91b78bb4d5b9074 to your computer and use it in GitHub Desktop.
просто вставить в самый верх head но после сессии, или кук.
function sanitize_output($buffer) {
$search = array(
'/\>[^\S ]+/s', // strip whitespaces after tags, except space
'/[^\S ]+\</s', // strip whitespaces before tags, except space
'/(\s)+/s', // shorten multiple whitespace sequences
'/<!--(.|\s)*?-->/' // Remove HTML comments
);
$replace = array(
'>',
'<',
'\\1',
''
);
$buffer = preg_replace($search, $replace, $buffer);
return $buffer;
}
ob_start("sanitize_output");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment