Does anybody know what the double not operator does in PHP, for example:
return !! $row;
What would the code above do?
|
It's not the "double not operator", it's the not operator applied twice. The right This means that for any true value (numbers other than zero, non-empty strings and arrays, etc.) you will get the boolean value It is functionally equivalent to a cast to |
||||
|
It's the same (or almost the same - there might be some corner case) as casting to bool. If But if you want to achieve |
|||||||||||||
|
|
Its means if |
|||
|
|
|
"not not" is a convenient way in many languages for understanding what truth value the language assigns to the result of any expression. Eg in Python:
It can be convenient in places where you want to reduce a complex value down to something like "is there a value at all". |
|||
|
|
php -r "var_dump(!!42);", replace42with whatever you want. – just somebody Jan 24 '10 at 13:57return (bool) $row;– WildlyInaccurate Jan 26 '12 at 14:53