init
[garradin.git] / include / libs / template_lite / plugins / modifier.strip.php
1 <?php
2 /**
3 * template_lite strip modifier plugin
4 *
5 * Type: modifier
6 * Name: strip
7 * Purpose: Removes all repeated spaces, newlines, tabs
8 * with a single space or supplied character
9 * Credit: Taken from the original Smarty
10 * http://smarty.php.net
11 */
12 function tpl_modifier_strip($string, $replace = ' ')
13 {
14 return preg_replace('!\s+!', $replace, $string);
15 }
16 ?>