Skip to content

Instantly share code, notes, and snippets.

@riaf
Created March 28, 2011 07:00
Show Gist options
  • Save riaf/890097 to your computer and use it in GitHub Desktop.
Save riaf/890097 to your computer and use it in GitHub Desktop.
Spaceless Helper for symfony 1.*
<?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