Proper Usage of isset() and !empty()
In web development, it's crucial to validate user inputs to prevent unexpected behavior. While both isset() and !empty() functions can be used to check for variable existence, their functionality and appropriate usage differ.
isset()
The isset() function determines if a variable has been assigned a value, even if that value is empty (""), 0, or false. It returns TRUE if the variable exists and is not NULL; otherwise, it returns FALSE.
!empty()
On the other hand, !empty() performs a logical negation of isset(), meaning it returns FALSE if the variable is set and has a non-empty, non-zero value. It returns TRUE otherwise. This includes checking for empty strings, 0, NULL, false, empty arrays, or objects.
Usage Recommendations
Example:
Instead of:
if (isset($_GET['gender']))...
Which checks if the gender parameter exists but not if it has a value, you should use:
if (!empty($_GET['gender']))...
This ensures that the gender parameter not only exists but also has a non-empty value, preventing you from operating on an empty string.
Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.
Copyright© 2022 湘ICP备2022001581号-3