<html>
<body>
$a = 0;
echo "a is " . is_null($a) . "<br>";
$b = null;
echo "b is " . is_null($b) . "<br>";
$c = "null";
echo "c is " . is_null($c) . "<br>";
$d = NULL;
echo "d is " . is_null($d) . "<br>";
</body>
<!-- Mirrored from www.w3schools.com/php/phptryit.asp?filename=tryphp_func_var_is_null by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 02:51:08 GMT -->
</html>