diff --git a/reference/var/functions/isset.xml b/reference/var/functions/isset.xml index e4c296dcc2..81c70b7add 100644 --- a/reference/var/functions/isset.xml +++ b/reference/var/functions/isset.xml @@ -1,5 +1,5 @@ - + @@ -33,7 +33,9 @@ Warning isset only works with variables as passing anything - else will result in a parse error. + else will result in a parse error. For checking if + constants are set use the + defined function. @@ -95,8 +97,10 @@ var_dump( array_key_exists('hello', $a) ); // TRUE See also empty, - unset, and - array_key_exists. + unset, defined, + array_key_exists and the error control + @ + operator.