10 * Smarty lower modifier plugin
14 * Purpose: convert string to lowercase
15 * @link http://smarty.php.net/manual/en/language.modifier.lower.php
16 * lower (Smarty online manual)
17 * @author Monte Ohrt <monte at ohrt dot com>
21 function smarty_modifier_lower($string)
23 return strtolower($string);
This page took 0.276843 seconds and 4 git commands to generate.