"> What will be the output of the following PHP code ?<?phpfunction

Home » PHP » PHP Functions » Question
  1. What will be the output of the following PHP code ?
    <?php
    function _message()
    {
    echo "Welcome to the Interview Mania";
    }
    _message();
    ?>
    1. Welcome to the Interview Mania
    2. Error
    3. Nothing
    4. _message
    5. None of these
Correct Option: A

Function Beginning with “_” is valid)



Your comments will be displayed only after manual approval.