Blame view

application/_libs/Smarty-3.0.9/libs/plugins/function.str_repeat.php 122 Bytes
8d65d0ce   andryeyev   init
1
2
3
4
5
  <?php
  function smarty_function_str_repeat($params, &$smarty){
   return str_repeat($params['value'],$params['count']);
  }
  ?>