PHP: ucwords() function
PHP: Uppercase the first character of each word in a string
The ucwords() function is used to convert the first character of each word in a string to uppercase.
Version:
(PHP 4 and above)
Syntax:
ucwords(string_name)
Parameter:
Name | Description | Required / Optional |
Type |
---|---|---|---|
string_name | The input string. | Required | String |
Return value:
The modified string.
Value Type: String.
Pictorial Presentation
Example:
<?php
$string_name='welcome to w3resource.com';
$string_name=ucwords($string_name);
echo $string_name;
?>
Output :
Welcome To W3resource.com
View the example in the browser
See also
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics