mirror of
https://github.com/smarty-php/smarty.git
synced 2025-11-06 15:21:37 +01:00
17 lines
390 B
PHP
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);
|
||
|
|
}
|
||
|
|
|
||
|
|
?>
|