La función strtoupper() se usa para convertir una string en mayúsculas. Esta función toma una string como parámetro y convierte todos los alfabetos ingleses en minúsculas presentes en la string a mayúsculas. Todos los demás caracteres numéricos o caracteres especiales de la string permanecen sin cambios.
Sintaxis :
string strtoupper ( $string )
Parámetro : el único parámetro de esta función es una string que se convertirá a mayúsculas.
Valor devuelto : esta función devuelve una string en la que todos los alfabetos están en mayúsculas.
Ejemplos:
Input : $str = "GeeksForGeeks" strtoupper($str) Output: GEEKSFORGEEKS Input : $str = "going BACK he SAW THIS 123$#%" strtoupper($str) Output: GOING BACK HE SAW THIS 123$#%
Los siguientes programas ilustran la función strtoupper() en PHP:
Programa 1
<?php // original string $str = "GeeksForGeeks"; // string converted to upper case $resStr = strtoupper($str); print_r($resStr); ?>
Producción:
GEEKSFORGEEKS
Programa 2
<?php // original string $str = "going BACK he SAW THIS 123$#%"; // string to upper case $resStr = strtoupper($str); print_r($resStr); ?>
Producción:
GOING BACK HE SAW THIS 123$#%
Referencia :
http://php.net/manual/en/function.strtoupper.php