w3resource

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

string_ucwords

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

PHP Function Reference

Previous: ucfirst
Next: vfprintf



Become a Patron!

Follow us on Facebook and Twitter for latest update.

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