vote up 0 vote down star

As I know, strtolower makes the string all lowercase and ucfirst makes the string's first letter capitalised.

I am asking, is it possible to make every word within the string capitalised?

Example $string = "hello world" - How can I make this appear "Hello World"?

flag

2 Answers

vote up 10 vote down

You are looking for the ucwords function. Example straight from the PHP docs:

$foo = 'hello world!';
$foo = ucwords($foo);             // Hello World!

$bar = 'HELLO WORLD!';
$bar = ucwords($bar);             // HELLO WORLD!
$bar = ucwords(strtolower($bar)); // Hello World!
link|flag
vote up 6 vote down

It's a good practice to make the entire string lowercase first just to ensure consistency.

$foo = ucwords(strtolower($string));
link|flag
If that's what you WANT to do. – d03boy Apr 1 at 5:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.