Examveda
Examveda

What will be the output of the following PHP code ?
<?php
function _func()
{
    echo "Hello World";
}
_func();
?>

A. Hello World

B. No Output

C. ERROR

D. None of the mentioned

Answer: Option A

Solution(By Examveda Team)

Function Begining with “_” is valid)

This Question Belongs to PHP >> Functions

Join The Discussion

Related Questions on Functions