strtoupper

(PHP 3, PHP 4 , PHP 5)

strtoupper -- Converte in maiuscolo una stringa

Descrizione

string strtoupper ( string 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.

Esempio 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().

Hosting by: hurra.com
Generated: 2007-01-26 17:56:34