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
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/php/function-reference/ucwords.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics