Possible Duplicate:
Check if value isset and null
If I have $v = NULL; how can I check that $v is exists and it’s NULL?
isset($v) => false //because of NULL, but $v exists
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can’t,
nullis equivalent to a non-existing variable:Only for arrays you can check whether a key exists although its value is
nullusingarray_key_exists.