What will be the output of the following PHP code ?
<?php
function 2myfunc()
{
echo "Hello World";
}
2myfunc();
?>
<?php
function 2myfunc()
{
echo "Hello World";
}
2myfunc();
?>A. Hello World
B. No Output
C. ERROR
D. None of the mentioned
Answer: Option C

Join The Discussion