The null type is PHP's unit type, i.e. it has only one value:
null.
Undefined and unset() variables resolve to the
value null.
There is only one value of type null, and that is the
case-insensitive constant null.
<?php
$var = NULL;
?>