?
What will be the output of the following PHP code ?
What will be the output of the following PHP code ?
<?php
function _func()
{
echo "Hello World";
}
_func();
?>
<?php
function _func()
{
echo "Hello World";
}
_func();
?>
Answer & Solution
Correct Answer:
Option
A
Function Begining with “_” is valid)
Join the Discussion
Login to post a comment or share your explanation.
Login