Created
March 28, 2011 07:00
-
-
Save riaf/890097 to your computer and use it in GitHub Desktop.
Spaceless Helper for symfony 1.*
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* spaceless helper | |
* | |
* @author Keisuke SATO <[email protected]> | |
*/ | |
function spaceless() | |
{ | |
ob_start(); | |
} | |
function endspaceless() | |
{ | |
echo trim(preg_replace('/>\s+</', '><', ob_get_clean())); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment