What will be the output of the following PHP code?
<?php
$title = "O'malley wins the heavyweight championship!";
echo ucwords($title);
?>
<?php
$title = "O'malley wins the heavyweight championship!";
echo ucwords($title);
?>
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: Option B
Solution (By Examveda Team)
The ucwords() function capitalizes the first letter of each word in a string. Its prototype follows: string ucwords(string str).Related Questions on Regular Expressions
A. 1 and 2
B. 2 and 4
C. 1 and 4
D. 2 and 3
Join The Discussion