Fonction strtoupper() | Développement Web

Fonction strtoupper()

La fonction strtoupper retourne la chaîne de caractère $string en majuscule.

Utilisation de la fonction strtoupper()

La signature de la fonction strtoupper est la suivante :

strtoupper ( $string );


   $string = ' fonction strtoupper ';  

   echo strtoupper( $string );

   /* Affiche : FONCTION STRTOUPPER */