Examveda

What will be the output of the following PHP code?
<?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 D

Solution (By Examveda Team)

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

This Question Belongs to PHP >> Functions

Join The Discussion

Comments (2)

  1. Andrew Lviv
    Andrew Lviv:
    6 years ago

    correct answer - O'malley Wins The Heavyweight Championship!

  2. Raham Sher
    Raham Sher:
    7 years ago

    Option A is the correct answer.

Related Questions on Functions