uppercase
Converts first letter of the string to uppercase.
echo ucfirst("uppercase this string");
// outputs "Uppercase this string"
copy
Converts first letter of the string to uppercase.
echo ucfirst("uppercase this string");
// outputs "Uppercase this string"
copy