We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Used to uppercase a variable. This is equivalent to the PHP strtoupper() function.
Template:
{$articleTitle = 'If Strike isn\'t Settled Quickly it may Last a While.'} {$articleTitle} {$articleTitle|upper}
output:
If Strike isn't Settled Quickly it may Last a While. IF STRIKE ISN'T SETTLED QUICKLY IT MAY LAST A WHILE.
see also upper in PHP Smarty documentation.