$a = true; $b = "blah"; if ($a == $b) no of course not.. hm.. yes it is, really... arghl..
if ($a === $b) ah.. I see.. now this IS false
PHP is funny :-)
February 5, 2008 at 11:58 AM
[Image]My colleague Cedric sent me this funny wisdom on debugging computer code:
The Six Stages of Debugging: That can’t happen.That doesn’t happen on my machine. That shouldn’t happen. Why in the hell does that happen? Oh, I see. How in the hell did that ever work?
"Debugging"
3 Comments -
Especially when looking at PowerPC register dumps...
January 26, 2008 at 4:02 PM
In HEX mode reads OFF, No comments
January 28, 2008 at 1:57 AM
Hahahhh.. :-)
Sounds familiar...
$a = true;
$b = "blah";
if ($a == $b)
no of course not.. hm..
yes it is, really... arghl..
if ($a === $b)
ah.. I see.. now this IS false
PHP is funny :-)
February 5, 2008 at 11:58 AM