La fonction strtolower retourne la chaîne de caractère $string en minuscule.
Utilisation de la fonction strtolower()
La signature de la fonction strtolower est la suivante :
strtolower ( $string );
$string = ' FONCTION strtolower '; echo strtolower( $string ); /* Affiche : fonction strtolower */