In PHP, false is true!

One of the many reasons we all need to move on:

<?php

$test = false;
if ($test == 0) {
    $test = 0;
    if ($test == "php sucks") {
        $test = "php sucks";
        if ($test ==  true) {
            print "false == true";
        }
    }
}

?>

Yes, this actually does what you think it does. Try it!