La función ucfirst() es una función incorporada en PHP que toma una string como argumento y devuelve la string con el primer carácter en mayúsculas y todos los demás caracteres permanecen sin cambios.
Sintaxis:
ucfirst($string)
Parámetro: La función acepta solo un parámetro $string que es obligatorio. Este parámetro representa la string cuyo primer carácter se cambiará a mayúsculas.
Valor devuelto: la función devuelve la misma string solo cambiando el primer carácter a mayúsculas del argumento pasado $string.
Ejemplos:
Input : "geeks for geeks" Output : Geeks for geeks Input : "Chetna Agarwal" Output : Chetna Agarwal
Los siguientes programas ilustran la función ucfirst() en PHP:
Programa 1: El siguiente programa demuestra el uso de la función ucfirst().
<?php // PHP program that demonstrates the // use of ucfirst() function $str = "geeks for geeks"; // converts the first case to upper case // and prints the string echo(ucfirst($str)); ?>
Producción:
Geeks for geeks
Programa 2: El siguiente programa demuestra el uso de la función ucfirst() cuando el carácter inicial está en mayúsculas.
<?php // PHP program that demonstrates the // use of ucfirst() function when // the first case is already in uppercase $str = "Chetna Agarwal"; // already the first character is in upper case // so prints the same string only echo(ucfirst($str)); ?>
Producción:
Chetna Agarwal
Referencia :
http://php.net/manual/en/function.ucfirst.php
Publicación traducida automáticamente
Artículo escrito por ChetnaAgarwal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA