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