forked from umakantp/jsmart
-
Notifications
You must be signed in to change notification settings - Fork 2
upper
pfaciana edited this page Sep 25, 2019
·
1 revision
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.