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
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