We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Used to lowercase a variable. This is equivalent to the PHP strtolower() function.
Template:
{$articleTitle = 'Two Convicts Evade Noose, Jury Hung.'} {$articleTitle} {$articleTitle|lower}
output:
Two Convicts Evade Noose, Jury Hung. two convicts evade noose, jury hung.
see also lower in PHP Smarty documentation.