What is the output of the following code?
<?php
function abc()
{
return __FUNCTION__;
}
function xyz()
{
return abc();
}
echo xyz();
?>
Correct Answer: abc
Explanation:
Note: This Question is unanswered, help us to find answer for this one
More PHP MCQ Questions