The What
Description
The isset function does two tasks:
- Checks if the variable is set in the symbols table.
- Checks if the variable is linked to data, meaning it’s not
NULL.
If you pass in multiple variables, then it returns true to you when all of the variables pass the above checks.
Parameters
var- One or more variables to check.
Return Values
It returns TRUE when each of the variables passed into the instruction meet the checks listed above.
