I was wondering why nobody suggested the extremely handy Type comparison table. It answers every question about the common functions and compare operators.
A snippet:
Expression | empty()
----------------+--------
$x = ""; | true
$x = null | true
var $x; | true
$x is undefined | true
$x = array(); | true
$x = false; | true
$x = true; | false
$x = 1; | false
$x = 42; | false
$x = 0; | true
$x = -1; | false
$x = "1"; | false
$x = "0"; | true
$x = "-1"; | false
$x = "php"; | false
$x = "true"; | false
$x = "false"; | false
Along other cheatsheets, I always keep a hardcopy of this table on my desk in case I'm not sure
emptyis perhaps the most useful yet widely misunderstood PHP function. Learn how and when to use it. – deceze Feb 8 '10 at 9:31emptyis essentially short forisset($var) && $var != false. You must be holding youremptyvery weird to shoot yourself in the foot with this. ;P – deceze Feb 8 '10 at 10:50falsewithout triggering an "undefined variable" error is useless? Oh well, guess you never do this… 3) Choosing the wrong function in a security context doesn't mean the function itself is bad, useless or inconsistent; it just means somebody chose the wrong function for the job. – deceze Feb 8 '10 at 11:27