|
Note: This manual is provided for your convenience only - this is not the official source and may not be 100% up to date. issetDescriptionbool isset ( mixed var [, mixed var [, ...]] )
Returns TRUE if If a variable has been unset with unset(), it will no longer be set. isset() will return FALSE if testing a variable that has been set to NULL. Also note that a NULL byte ("\0") is not equivalent to the PHP NULL constant.
This also work for elements in arrays:
See also empty(), unset(), defined(), the type comparison tables, array_key_exists(), is_null(), and the error control @ operator. |
|