Q. What will be the output?
Code:function test() {
return 5;
}
echo test();
β
Correct Answer: (A)
5
Explanation: Function returns 5.
function test() {
return 5;
}
echo test();