(PHP 4 >= 4.0.4, PHP 5)
is_null —
Verifica se la variabile è di tipo NULL
var
La variabile da valutare.
Restituisce TRUE
se var
è di tipo null,
FALSE
in caso contrario.
Example #1 Esempio di is_null()
<?php
error_reporting(E_ALL);
$foo = NULL;
var_dump(is_null($inexistent), is_null($foo));
?>
Notice: Undefined variable: inexistent in ... bool(true) bool(true)
NULL