Can somebody explain how null is mapped in these statements?
null>0; //=> bool(false)
null<0; //=> bool(false)
null==0; //=> bool(true)
but
null<-1; // => bool(true)
I assume it's some mapping problem, but can't crack it.
Tried with PHP 5.3.5-1 with Suhosin-Patch.
===type checked equality if you want accuracy – JohnP Apr 11 '11 at 16:07