(PHP 4, PHP 5)
strtoupper — Converte in maiuscolo una stringa
$string
)
Restituisce la stringa string
con i caratteri alfabetici
convertiti in maiuscolo.
Nota: i caratteri 'alfabetici' sono determinati in base alle impostazioni locali. Ciò significa, ad esempio, che nelle impostazioni locali di default del "C", il carattere umlaut-A (Ä) non sarà convertito.
Example #1 Esempio di uso di strtoupper()
<?php
$str = "Mary Had A Little Lamb and She LOVED It So";
$str = strtoupper($str);
echo $str; // Prints MARY HAD A LITTLE LAMB AND SHE LOVED IT SO
?>
Nota: Questa funzione è binary-safe (gestisce correttamente i file binari)
Vedere anche: strtolower(), ucfirst(), ucwords() e mb_strtoupper().