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

Discussion :: PHP - CS

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

    <?php

    echo lcfirst("welcome to India");

    ?>

  2. A.

     welcome to India

    B.

     welcome to india

    C.

     Welcome to India

    D.

     Welcome to india

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    The lcfirst() function converts the first character of a string to lowercase.


Be The First To Comment