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();
?>
- b is executedb is executedb is executed
- b is executeda is executed
- a is executed
- b is executeda is executedb is executed
(d).b is executeda is executedb is executed
need an explanation for this answer? contact us directly to get an explanation for this answer