ucfirst
Make a string's first character uppercase
Description
string ucfirst(string $string
)
Parameters
-
string
-
The input string.
Return Values
Returns the resulting string.
Examples
Example #1 ucfirst example
<?php
$foo = 'hello world!';
$foo = ucfirst($foo); // Hello world!
$bar = 'HELLO WORLD!';
$bar = ucfirst($bar); // HELLO WORLD!
$bar = ucfirst(strtolower($bar)); // Hello world!
?>
See Also
- lcfirst
- strtolower
- strtoupper
- ucwords
- mb_convert_case