<?php
    header("Content-type: text/plain");

    $a = "0";
    $b = "";

    if ($a == $b) {
        echo "this should not be\n";
    } else {
        echo "this should\n";
    }

    if ($a !== $b) {
        echo "quick fixed";
    }
?>