Section courante

Section administrative du site

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 !
  1. <?php
  2. echo strtoupper("Sylvain Maltais")."<br />";
  3. echo strtoupper("SYLVain MALTais")."<br />";
  4. echo strtoupper("SYLVAIN MALTAIS")."<br />";
  5. ?>

on obtiendra le résultat suivant :

SYLVAIN MALTAIS
SYLVAIN MALTAIS
SYLVAIN MALTAIS


Dernière mise à jour : Mardi, le 28 avril 2015