Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 324 Bytes

upper.md

File metadata and controls

13 lines (10 loc) · 324 Bytes

Modifier upper

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

{var $name = "Bzick"}

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