"/>
Home / CSE / PHP - CS :: Discussion

Discussion :: PHP - CS

  1. What will be the output of the following PHP code?

    <?php

    $title = "O'malley wins the heavyweight championship!";

    echo ucwords($title);

    ?>

  2. 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!

    View Answer

    Workspace

    Answer : Option D

    Explanation :

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


Be The First To Comment