Single Choice
Not Set
QWhat will be the output of the following PHP code?
< ?php
function a()
{
function b()
{
echo 'I am b';
}
echo 'I am a';
}
a();
a();
?>
ID: #2432
Functions in PHP MCQ
705 views
Question Info
#2432Q ID
Not SetDifficulty
Functions in PHP MCQTopic
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
Correct Answer
Explanation
This will be the output- I am a Fatal error: Cannot redeclare b()
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic