|
ucwordsUppercase the first character of each word in a string Description
string ucwords(string
$string , string $separators = " \t\r\n\f\v")
Returns a string with the first character of each word in
For this function, a word is a string of characters that are not listed in
the
To do a similar conversion on multibyte strings, use
mb_convert_case with the Parameters
Return ValuesReturns the modified string. Changelog
Examples
Example #1 ucwords example
Example #2 ucwords example with custom delimiter
Example #3 ucwords example with additional delimiters
Notes
See Also
|