Discussion :: PHP - CS
-
What will be the output of the following PHP code?
<?php
function a()
{
function b()
{
echo 'I am b';
}
echo 'I am a';
}
a();
a();
?>
Answer : Option D
Explanation :
This will be the output- I am a Fatal error: Cannot redeclare b()
Be The First To Comment