Vidyalelo
PHP · Q15

Regular Expressions

Programming · PHP · question 15

Q15

What will be the output of the following PHP code?

A.
O'Malley Wins The Heavyweight Championship!
B.
O'malley Wins The Heavyweight Championship!
Answer
C.
O'Malley wins the heavyweight championship!
D.
o'malley wins the heavyweight championship!

Answer: Option B

Solution

Answer: Option B
Solution:
The ucwords() function capitalizes the first letter of each word in a string. Its prototype follows: string ucwords(string str).