Q. What will be the output?
Code:
$x = NULL; echo is_null($x);
β
Correct Answer: (A)
1
Explanation: is_null() returns true (1).
$x = NULL; echo is_null($x);
Explanation: is_null() returns true (1).