is_null is the same as === null. Both return true when a variable is null (or unset).
Note that I’m using === and not ==. === compares type as well as value.
is_null is the same as === null. Both return true when a variable is null (or unset).
Note that I’m using === and not ==. === compares type as well as value.