www.gusucode.com > 74cms PHP骑士人才系统 v3.5.1源码程序 > code/upload/include/template_lite/plugins/modifier.strip.php

    <?php
/**
 * template_lite strip modifier plugin
 *
 * Type:     modifier
 * Name:     strip
 * Purpose:  Removes all repeated spaces, newlines, tabs
 *           with a single space or supplied character
 * Credit:   Taken from the original Smarty
 *           http://smarty.php.net
 */
function tpl_modifier_strip($string, $replace = ' ')
{
	return preg_replace('!\s+!', $replace, $string);
}
?>