diff --git a/reference/var/functions/isset.xml b/reference/var/functions/isset.xml index 27eccffc6c..22289269d5 100644 --- a/reference/var/functions/isset.xml +++ b/reference/var/functions/isset.xml @@ -1,5 +1,5 @@ - + isset @@ -23,6 +23,11 @@ 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 stop as soon as a set variable is encountered. +