STRTOUPPER |
Chaine à haute |
---|---|
PHP 3+ |
Syntaxe
function strtoupper($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 majuscule.
Algorithme
MODULE strtoupper(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 strtoupper("Sylvain Maltais")."<br />";
- echo strtoupper("SYLVain MALTais")."<br />";
- echo strtoupper("SYLVAIN MALTAIS")."<br />";
- ?>
on obtiendra le résultat suivant :
SYLVAIN MALTAISSYLVAIN MALTAIS
SYLVAIN MALTAIS
Dernière mise à jour : Mardi, le 28 avril 2015