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

Discussion :: PHP - CS

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

    <?php

    echo strtr("Hilla Warld","ia","eo");

    ?>

  2. A.

     Hilla Warld

    B.

     Hello World

    C.

     ia

    D.

     eo

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    The strtr() function translates certain characters in a string.


Be The First To Comment