We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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.