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

Discussion :: PHP - CS

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

    <?php

    function 2myfunc()

    {

    echo "Hello World";

    }

    2myfunc();

    ?>

  2. A.

     Hello World

    B.

     No Output

    C.

     ERROR

    D.

     None of the mentioned

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    Function cannot begin with a number.


Be The First To Comment