|
ucwordsUppercase the first character of each word in a string Description
string ucwords
( string
$str
[,
string $delimiters = " \t\r\n\f\v"
] )
Returns a string with the first character of each word in
The definition of a word is any string of characters that is immediately
after any character listed in the Parameters
Return ValuesReturns the modified string. Changelog
Examples
Example #1 ucwords example
<?php
Example #2 ucwords example with custom delimiter
<?php Notes
See Also
|