Files
smarty/libs/plugins/modifier.wordwrap.php
2002-03-15 07:08:17 +00:00

17 lines
390 B
PHP

<?php
/*
* Smarty plugin
* -------------------------------------------------------------
* Type: modifier
* Name: wordwrap
* Purpose: wrap a string of text at a given length
* -------------------------------------------------------------
*/
function smarty_modifier_wordwrap($string,$length=80,$break="\n",$cut=false)
{
return wordwrap($string,$length,$break,$cut);
}
?>