Web-shop for only 500 euro during 3 days, +38 068 801 14 71 (Kiev, Ukraine)
(unknown)
int isset (mixed var)
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().