function.str_repeat.php 122 Bytes
<?php
function smarty_function_str_repeat($params, &$smarty){
 return str_repeat($params['value'],$params['count']);
}
?>