STRTOLOWER |
Chaine à basse |
---|---|
PHP 3+ |
Syntaxe
function strtolower($chaine) |
Paramètres
Nom | Description |
---|---|
$chaine | Ce paramètre permet d'indiquer une chaine de caractères à traiter |
Description
Cette fonction permet de convertir en chaine de caractères en minuscule.
Algorithme
MODULE strtolower(string) BOUCLE POUR I ← 0 JUSQU'A longueur(string)-1 EVALUER CAS string[I] CASE 'A': string[I] ← 'a' CASE 'B': string[I] ← 'b' CASE 'C': string[I] ← 'c' CASE 'D': string[I] ← 'd' CASE 'E': string[I] ← 'e' CASE 'F': string[I] ← 'f' CASE 'G': string[I] ← 'g' CASE 'H': string[I] ← 'h' CASE 'I': string[I] ← 'i' CASE 'J': string[I] ← 'j' CASE 'K': string[I] ← 'k' CASE 'L': string[I] ← 'l' CASE 'M': string[I] ← 'm' CASE 'N': string[I] ← 'n' CASE 'O': string[I] ← 'o' CASE 'P': string[I] ← 'p' CASE 'Q': string[I] ← 'q' CASE 'R': string[I] ← 'r' CASE 'S': string[I] ← 's' CASE 'T': string[I] ← 't' CASE 'U': string[I] ← 'u' CASE 'V': string[I] ← 'v' CASE 'W': string[I] ← 'w' CASE 'X': string[I] ← 'x' CASE 'Y': string[I] ← 'y' CASE 'Z': string[I] ← 'z' FIN EVALUER CAS FIN BOUCLE POUR RETOURNE string |
Exemple
Voici quelques exemples typiques de l'utilisation de cette fonction :
Essayer maintenant !
- <?php
- echo strtolower("Sylvain Maltais")."<br />";
- echo strtolower("SYLVain MALTais")."<br />";
- echo strtolower("SYLVAIN MALTAIS")."<br />";
- ?>
on obtiendra le résultat suivant :
sylvain maltaissylvain maltais
sylvain maltais
Dernière mise à jour : Mardi, le 28 avril 2015