Vidyalelo
PHP · Q39

Functions

Programming · PHP · question 39

Q39

What will be the output of the following PHP code?

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

Answer: Option D

Solution

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