PHP 8.4.0 RC4 available for testing

mb_lcfirst

(PHP 8 >= 8.4.0)

mb_lcfirstRend la première lettre d'une chaîne en minuscule

Description

mb_lcfirst(string $string, string $encoding = null): string

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

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. Returns the resulting string.

Voir aussi

  • mb_ucfirst() - Rend une chaîne avec la première lettre en majuscule
  • lcfirst() - Met le premier caractère en minuscule
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top