mb_ucfirst

Make a string's first character uppercase

Description

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

Performs a multi-byte safe ucfirst operation, and returns a string with the first character of string title-cased.

Parameters

string
The input string.
encoding
The string encoding.

Return Values

Returns the resulting string.

Notes

Note:

By contrast to the standard case folding functions such as strtolower and strtoupper, case folding is performed on the basis of the Unicode character properties. Thus the behaviour of this function is not affected by locale settings and it can convert any characters that have 'alphabetic' property, such a-umlaut (รค).

For more information about the Unicode properties, please see » http://www.unicode.org/reports/tr21/.

See Also

  • mb_lcfirst
  • mb_convert_case
  • ucfirst