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

Discussion :: PHP - CS

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

    <?php

    function _func()

    {

    echo "Hello World";

    }

    _func();

    ?>

  2. A.

     Hello World

    B.

     No Output

    C.

     ERROR

    D.

     None of the mentioned

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    Function Begining with “_” is valid)


Be The First To Comment