Is there a better way besides isset() or empty() to test for an empty variable?
|
show 5 more comments
feedback
|
|
It depends upon the context.
Some examples
| |||||||
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.
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. | |||
feedback
|
empty. That's because PHP deals a lot with strings, especially POST values, so0and"0"are regarded as equally empty. It's a rule you just have to learn. If you want more precise control, useissetand strictly compare to values you regard as empty. – deceze Apr 7 '10 at 4:23