Is there a better way besides isset() or empty() to test for an empty variable?

link|improve this question

68% accept rate
12  
What is wrong with isset() and empty()? – dscher Apr 7 '10 at 4:13
+1 to the previous one – Your Common Sense Apr 7 '10 at 4:14
I thought I remembered reading about a different method on Coding Horror or another blog but couldn't remember it. I'm not saying something is wrong with isset() or empty(), just trying to poke the brain a bit. – Josh K Apr 7 '10 at 4:14
1  
@Asaph Well yes, because it's, by PHP's definition, empty. That's because PHP deals a lot with strings, especially POST values, so 0 and "0" are regarded as equally empty. It's a rule you just have to learn. If you want more precise control, use isset and strictly compare to values you regard as empty. – deceze Apr 7 '10 at 4:23
1  
@dscher: No worries. It happens to the best of us :) – Asaph Apr 7 '10 at 4:24
show 5 more comments
feedback

2 Answers

up vote 4 down vote accepted

It depends upon the context.

isset() will ONLY return true when the value of the variable is not NULL (and thereby the variable is at least defined).

empty() will return true when the value of the variable is deemed to be an "empty" value, typically this means 0, "0", NULL, FALSE, array() (an empty array) and "" (an empty string), anything else is not empty.

Some examples

FALSE == isset($foo);
TRUE == empty($foo);
$foo = NULL;
FALSE == isset($foo);
TRUE == empty($foo);
$foo = 0;
TRUE == isset($foo);
TRUE == empty($foo);
$foo = 1;
TRUE == isset($foo);
FALSE == empty($foo);
link|improve this answer
Good enough for me, thanks. – Josh K Apr 7 '10 at 4:19
1  
array(), i.e. an empty array is also empty! – deceze Apr 7 '10 at 4:42
feedback

Keep an eye out for some of the strange == results you get with PHP though; you may need to use === to get the result you expect, e.g.

if (0 == '') {
  echo "weird, huh?\n";
}

if  (0 === '') {
  echo "weird, huh?\n";
} else {
  echo "that makes more sense\n";
}

Because 0 is false, and an empty string is false, 0 == '' is the same as FALSE == FALSE, which is true. Using === forces PHP to check types as well.

link|improve this answer
Agreed, use var_dump() on your variable before apply conditional code checks and keep this grid-check in mind: deformedweb.co.uk/php_variable_tests.php – Cups Apr 7 '10 at 9:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.