Skip to content

Instantly share code, notes, and snippets.

@davist11
Last active December 10, 2015 22:48
Show Gist options
  • Save davist11/4504386 to your computer and use it in GitHub Desktop.
Save davist11/4504386 to your computer and use it in GitHub Desktop.
<?php
public function clean_whitespace() {
$tagdata = $this->EE->TMPL->tagdata;
$tagdata = trim($tagdata);
$tagdata = preg_replace('/\s+/', ' ', $tagdata);
$tagdata = str_replace("\t", " ", $tagdata);
return $tagdata;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment