return true to win

<?php

function foo($x)
{
    // This level is slightly different than level 12
    // the comparison is != instead of !== ;)
    return $x[123456] != null
        && $x[123456] === $x[123457];
}
foo(
)
Score: 0

Absolute best score: 13