PHP 8.4.2 Released!

mb_lcfirst

(PHP 8 >= 8.4.0)

mb_lcfirstMake a string's first character lowercase

Descripción

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

Performs a multi-byte safe lcfirst() operation, and returns a string with the first character of string lowercased.

Parámetros

string
The input string.
encoding

El parámetro encoding es la codificación de caracteres. Si es omitido, será usado el valor de la codificación de caracteres interna.

Valores devueltos

Returns the resulting string.

Ver también

  • mb_ucfirst() - Make a string's first character uppercase
  • lcfirst() - Pasa a minúscula el primer caracter de un string
add a note

User Contributed Notes

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