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

Join The Discussion