The PHP ucwords () function converts the first character of each word in a string to uppercase, Ucwords uppercase
The PHP ucwords () function converts the first character of each word in a string to uppercase, and this article introduces the basic use methods and examples of PHP ucwords () functions, which are of interest to the code farmers.
Definition and usage
The Ucwords () function converts the first character of each word in a string to uppercase.
Note: This function is binary safe.
Related functions:
Lcfirst ()-Converts the first character in a string to lowercase
Strtolower ()-Converts a string to lowercase
Strtoupper ()-Converts a string to uppercase
Ucfirst ()-Converts the first character in a string to uppercase
Grammar
Ucwords (String)
Parameter description
string is required. Specifies the string to convert.
Technical details
Return value: Returns the converted string.
PHP version: 4+