fenom/docs/ru/mods/lower.md
2014-08-01 12:12:19 +04:00

316 B

Modifier lower

Modifier is used to lowercase a variable or string. Have short alias low This is equivalent to the PHP strtolower() function.

{var $name = "Bzick"}

{$name}         output Bzick
{$name|upper}   output bzick
{$name|up}      output bzick too