mb_ucfirst

(PHP 8 >= 8.4.0)

mb_ucfirstRend une chaîne avec la première lettre en majuscule

Description

mb_ucfirst(string $string, ?string $encoding = null): string

Effectue une opération ucfirst() multi-octets sûre, et renvoie une chaîne avec la première lettre de string avec titre en majuscule.

Liste de paramètres

string
La chaîne d'entrée.
encoding
La chaîne d'encodage.

Valeurs de retour

Renvoie la chaîne de résultat.

Notes

Note:

Contrairement aux fonctions de conversion de casse standard telles que strtolower() et strtoupper(), la conversion de casse est effectuée sur la base des propriétés des caractères Unicode. Ainsi, le comportement de cette fonction n'est pas affecté par les paramètres régionaux, et elle peut convertir tous les caractères ayant la propriété 'alphabétique', comme le tréma sur le "a" (ä).

Pour plus d'informations sur les propriétés Unicode, veuillez consulter » http://www.unicode.org/reports/tr21/.

Voir aussi

add a note

User Contributed Notes 2 notes

up
1
hans at loltek dot net
4 months ago
polyfill:

<?php
if(PHP_VERSION_ID < 80400) {
function
mb_ucfirst(string $str, string $encoding = null): string
{
if (
$encoding === null) {
$encoding = mb_internal_encoding();
}
return
mb_strtoupper(mb_substr($str, 0, 1, $encoding), $encoding) . mb_substr($str, 1, null, $encoding);
}

}
?>

if you wonder why i bother with mb_internal_encoding: prior to php7, $encoding was not nullable. if your polyfill don't need php5.6 support, you can drop it.
up
0
wb027 at yandex dot ru
18 days ago
There is an error on the Russian page.
https://www.php.net/manual/ru/function.mb-ucfirst.php

"Функция выполняет операцию, аналогичную функции lcfirst()"
It must be "ucfirst()".
To Top