php ucwords() function converts the first character of each word in the string to uppercase, ucwords capitalizes
php ucwords() function converts the first character of each word in the string to uppercase Convert characters to uppercase. This article introduces the basic usage methods and examples of the php ucwords() function to coders. Interested coders can refer to it.
Definition and usage
ucwords() function converts the first character of each word in the string to uppercase.
Note: This function is binary safe.
Related functions:
lcfirst() - Convert the first character in the string to lowercase
strtolower() - Convert the string to lowercase
strtoupper() - Convert the string to uppercase
ucfirst() - Convert the first character in the string to uppercase
Syntax
ucwords(string)
Parameter Description
string Required. Specifies the string to be converted.
Technical details
Return value: Returns the converted string.
PHP Version: 4