10
* Smarty wordwrap modifier plugin
14
* Purpose: wrap a string of text at a given length
15
* @link http://smarty.php.net/manual/en/language.modifier.wordwrap.php
16
* wordwrap (Smarty online manual)
17
* @author Monte Ohrt <monte at ohrt dot com>
24
function smarty_modifier_wordwrap($string,$length=80,$break="\n",$cut=false)
26
return wordwrap($string,$length,$break,$cut);