In PHP, can someone explain to me why this resolves to true:
'NONE' == 0
|
|
|
Because any non-numerical string cast to int will turn into 0. If you don't want that to happen, use ===, the identical operator. Read: |
|||||||||||||
|
|
Because the string is 0 when evaluated in a number context. Quoting:
So it depends on what the string contains. Also, see the chapter on Type Juggling and Type Comparison in the PHP Manual. |
|||||||||||||
|