Google News
logo
PHP - Interview Questions
Explain isset() function?
The isset() function checks if the particular variable is set and has a value other than NULL. The function returns Boolean – false if the variable is not set or true if the variable is set. The function can check multiple values: isset(var1, var2, var3…)
Advertisement