"> 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 15function()
    {
    echo "Hello Interview Mania";
    }
    15function();
    ?>
    1. Error
    2. Hello
    3. Interview Mania
    4. Hello Interview Mania
    5. None of these
Correct Option: A

Function cannot begin with a number.



Your comments will be displayed only after manual approval.