What will be the output of the following PHP code?
span>
function one()
{
echo " this works";
function two()
{
echo "this too works";
}
}
one();
two();
?>
span>
function one()
{
echo " this works";
function two()
{
echo "this too works";
}
}
one();
two();
?>
A. error
B. this works
C. this worksthis too works
D. this works this too works
Answer: Option C
Join The Discussion