PHP Manual

PEAR Manual

Smarty Manual

PostgreSQL

MySQL Manual

Perl Manual

lower

this is used to lowercase a variable.

example 5-12. lower

<?php
    
$smarty
->assign('articletitle''two convicts evade noose, jury hung.');
    
?>

where template is:

{$articletitle} {$articletitle|lower}

this will output:

two convicts evade noose, jury hung. two convicts evade noose, jury hung.

see also upper and capitalize.