/smarty_plugins/modifier.str_repeat.php
https://github.com/kastner/trackstat · PHP · 21 lines · 4 code · 3 blank · 14 comment · 0 complexity · b8f2a3efa818f25a131876658684da8d MD5 · raw file
- <?php
- /**
- * Smarty plugin
- * @package Smarty
- * @subpackage plugins
- */
- /**
- * Smarty count_characters modifier plugin
- *
- * Type: modifier<br>
- * Name: str_repeat<br>
- * Purpose: turns seconds to something like "about 10 minutes ago"
- * @param integer
- * @return string
- */
- function smarty_modifier_str_repeat($string, $times) {
- return str_repeat($string, $times);
- }