ucfirst

(PHP 4, PHP 5, PHP 7, PHP 8)

ucfirstMake a string's first character uppercase

Descrição

ucfirst(string$string): string

Returns a string with the first character of string capitalized, if that character is an ASCII character in the range from "a" (0x61) to "z" (0x7a).

Parâmetros

string

The input string.

Valor Retornado

Returns the resulting string.

Registro de Alterações

VersãoDescrição
8.2.0 A conversão de maiúsculas e minúsculas não depende mais da localidade definida com setlocale(). Somente caracteres ASCII serão convertidos.

Exemplos

Exemplo #1 ucfirst() example

<?php
$foo
= 'hello world!';
$foo = ucfirst($foo); // Hello world!

$bar = 'HELLO WORLD!';
$bar = ucfirst($bar); // HELLO WORLD!
$bar = ucfirst(strtolower($bar)); // Hello world!
?>

Veja Também

To Top