Q. What will be the output of the following PHP code?
Code:
<?php
function 2myfunc()
{
echo "Hello World";
}
2myfunc();
?>
β
Correct Answer: (A)
ERROR
<?php
function 2myfunc()
{
echo "Hello World";
}
2myfunc();
?>
You must be Logged in to update hint/solution