Q. What will be the output?
Code:
echo count(null);
β
Correct Answer: (A)
0
Explanation: count(null) returns 0.
echo count(null);
Explanation: count(null) returns 0.