In PHP....
function converts the first
character of each word in a string to uppercase.
Answers
Answered by
0
Answer:
ucwords()
Explanation:
The ucwords() is an in-built function of PHP, which is used to convert the first character of each word to uppercase in a string. The ucwords() is supported by the PHP 4 and above versions. It takes a string as an input and converts the first character of each word of the string to uppercase.
Similar questions