isset
(PHP 4, PHP 5)
isset — Determine whether a variable is set
Description
bool isset
(
mixed $var
[,
mixed $var
[,
$...
]] )
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.
If multiple parameters are supplied then isset() will
return TRUE only if all of the parameters are set. Evaluation goes from
left to right and stops as soon as an unset variable is encountered.
Parameters
-
var
-
The variable to be checked.
-
var
-
Another variable ..
-
...
-
Return Values
Returns TRUE if var
exists; FALSE otherwise.
Examples
Example #1 isset() Examples
<?php
$var = '';
if (isset($var)) {
echo "This var is set so I will print.";
}
$a = "test";
$b = "anothertest";
var_dump(isset($a)); var_dump(isset($a, $b)); unset ($a);
var_dump(isset($a)); var_dump(isset($a, $b)); $foo = NULL;
var_dump(isset($foo)); ?>
This also work for elements in arrays:
Notes
Warning
isset() only works with variables as passing anything
else will result in a parse error. For checking if
constants are set use the
defined() function.
Note: Because this is a
language construct and not a function, it cannot be called using
variable functions