Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 318 Bytes

lower.md

File metadata and controls

13 lines (10 loc) · 318 Bytes

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|lower}   output bzick
{$name|low}      output bzick too