lower

This is used to lowercase a variable.

此函式用來將變數內容變成小寫。

Example 5-12. lower

<?php
    
$smarty
= new Smarty;
$smarty->assign('articleTitle', 'Two Convicts Evade Noose, Jury Hung.');
$smarty->display('index.tpl');
    
?>

Where index.tpl is:

其中 index.tpl 的內容為:

{$articleTitle}
{$articleTitle|lower}

This will output:

輸出結果為:

Two Convicts Evade Noose, Jury Hung.
two convicts evade noose, jury hung.