lower

Isto é usado para converter para minúsculas uma variável.

Exemplo 5-13. lower

index.php:
$smarty = new Smarty;
$smarty->assign('articleTitle', 'Two Convicts Evade Noose, Jury Hung.');
$smarty->display('index.tpl');
index.tpl:
{$articleTitle}
{$articleTitle|lower}
MOSTRA:
Two Convicts Evade Noose, Jury Hung.
two convicts evade noose, jury hung.