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ão Descriçã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

  • lcfirst() - Torna minúsculo o primeiro caractere de uma string
  • strtolower() - Converte uma string para minúsculas
  • strtoupper() - Make a string uppercase
  • ucwords() - Converte para maiúsculas o primeiro caractere de cada palavra
  • mb_convert_case() - Realiza a conversão de caixa em uma string