int isset
Returns true if var exists; false otherwise.
If a variable has been unset with unset(), it will no longer be isset().
$a = "test"; echo isset($a); // true unset($a); echo isset($a); // false
See also empty() and unset().