/ Published in: PHP
URL: http://ru.php.net/manual/en/function.ob-start.php#71953
Place this at the top of your php files. This will remove white space and formatting from HTML, making it smaller and faster for download by your users.
Expand |
Embed | Plain Text
<?php function sanitize_output($buffer) { '/\>[^\S ]+/s', //strip whitespaces after tags, except space '/[^\S ]+\</s', //strip whitespaces before tags, except space '/(\s)+/s' // shorten multiple whitespace sequences ); '>', '<', '\\1' ); return $buffer; } ?>
You need to login to post a comment.
