10 * Smarty string_format modifier plugin
13 * Name: string_format<br>
14 * Purpose: format strings via sprintf
15 * @link http://smarty.php.net/manual/en/language.modifier.string.format.php
16 * string_format (Smarty online manual)
17 * @author Monte Ohrt <monte at ohrt dot com>
22 function smarty_modifier_string_format($string, $format)
24 return sprintf($format, $string);
27 /* vim: set expandtab: */
This page took 0.450218 seconds and 4 git commands to generate.