--TEST-- Test == operator : max int 64bit range --SKIPIF-- --FILE-- $compareVal) { // do nothing } else { echo "FAILED: '$typeToTestVal' == '$compareVal'\n"; $failed = true; } } } // test invalid values for ($i = 0; $i < count($invalidNotEquals); $i +=2) { $typeToTestVal = $invalidNotEquals[$i]; $compares = $invalidNotEquals[$i + 1]; foreach($compares as $compareVal) { if ($typeToTestVal != $compareVal || $typeToTestVal <> $compareVal) { echo "FAILED: '$typeToTestVal' != '$compareVal'\n"; $failed = true; } } } if ($failed == false) { echo "Test Passed\n"; } ?> ===DONE=== --EXPECT-- Test Passed ===DONE===