?
What will be the output of the following PHP code?
What will be the output of the following PHP code?
<?php
function b()
{
echo "b is executed";
}
function a()
{
b();
echo "a is executed";
b();
}
a();
?>
<?php
function b()
{
echo "b is executed";
}
function a()
{
b();
echo "a is executed";
b();
}
a();
?>
Answer & Solution
Correct Answer:
Option
D
imple order of execution.
Join the Discussion
Login to post a comment or share your explanation.
Login