PHP 8.4.2 Released!

mb_lcfirst

(PHP 8 >= 8.4.0)

mb_lcfirstMake a string's first character lowercase

Açıklama

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.

Bağımsız Değişkenler

string
The input string.
encoding

kodlama bağımsız değişkeninde karakter kodlaması belirtilir. Belirtilmediği takdirde veya null ise dahili karakter kodlaması kullanılır.

Dönen Değerler

Returns the resulting string.

Ayrıca Bakınız

  • mb_ucfirst() - Make a string's first character uppercase
  • lcfirst() - Bir dizgenin ilk karakterini küçük harf yapar
add a note

User Contributed Notes

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