Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 322 Bytes

upper.md

File metadata and controls

13 lines (10 loc) · 322 Bytes

Modifier |upper

Modifier is used to uppercase a variable or string. Have short alias up This is equivalent to the PHP strtoupper() function.

{var $name = "Bzick"}

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