PHP: ucwords() function
Description
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
Inviting useful, relevant, well-written and unique guest posts
- New Content published on w3resource :
- Python Numpy exercises
- Python GeoPy Package exercises
- Python Pandas exercises
- Python nltk exercises
- Python BeautifulSoup exercises
- Form Template
- Composer - PHP Package Manager
- PHPUnit - PHP Testing
- Laravel - PHP Framework
- Angular - JavaScript Framework
- React - JavaScript Library
- Vue - JavaScript Framework
- Jest - JavaScript Testing Framework