--TEST-- Test << operator : 64bit long tests --SKIPIF-- --FILE-- getMessage() . "\n"; } } } foreach ($otherVals as $otherVal) { foreach($longVals as $longVal) { echo "--- testing: $otherVal << $longVal ---\n"; try { var_dump($otherVal<<$longVal); } catch (ArithmeticError $e) { echo "Exception: " . $e->getMessage() . "\n"; } } } ?> ===DONE=== --EXPECT-- --- testing: 9223372036854775807 << 0 --- int(9223372036854775807) --- testing: 9223372036854775807 << 1 --- int(-2) --- testing: 9223372036854775807 << -1 --- Exception: Bit shift by negative number --- testing: 9223372036854775807 << 7 --- int(-128) --- testing: 9223372036854775807 << 9 --- int(-512) --- testing: 9223372036854775807 << 65 --- int(0) --- testing: 9223372036854775807 << -44 --- Exception: Bit shift by negative number --- testing: 9223372036854775807 << 2147483647 --- int(0) --- testing: 9223372036854775807 << 9223372036854775807 --- int(0) --- testing: -9223372036854775808 << 0 --- int(-9223372036854775808) --- testing: -9223372036854775808 << 1 --- int(0) --- testing: -9223372036854775808 << -1 --- Exception: Bit shift by negative number --- testing: -9223372036854775808 << 7 --- int(0) --- testing: -9223372036854775808 << 9 --- int(0) --- testing: -9223372036854775808 << 65 --- int(0) --- testing: -9223372036854775808 << -44 --- Exception: Bit shift by negative number --- testing: -9223372036854775808 << 2147483647 --- int(0) --- testing: -9223372036854775808 << 9223372036854775807 --- int(0) --- testing: 2147483647 << 0 --- int(2147483647) --- testing: 2147483647 << 1 --- int(4294967294) --- testing: 2147483647 << -1 --- Exception: Bit shift by negative number --- testing: 2147483647 << 7 --- int(274877906816) --- testing: 2147483647 << 9 --- int(1099511627264) --- testing: 2147483647 << 65 --- int(0) --- testing: 2147483647 << -44 --- Exception: Bit shift by negative number --- testing: 2147483647 << 2147483647 --- int(0) --- testing: 2147483647 << 9223372036854775807 --- int(0) --- testing: -2147483648 << 0 --- int(-2147483648) --- testing: -2147483648 << 1 --- int(-4294967296) --- testing: -2147483648 << -1 --- Exception: Bit shift by negative number --- testing: -2147483648 << 7 --- int(-274877906944) --- testing: -2147483648 << 9 --- int(-1099511627776) --- testing: -2147483648 << 65 --- int(0) --- testing: -2147483648 << -44 --- Exception: Bit shift by negative number --- testing: -2147483648 << 2147483647 --- int(0) --- testing: -2147483648 << 9223372036854775807 --- int(0) --- testing: 9223372034707292160 << 0 --- int(9223372034707292160) --- testing: 9223372034707292160 << 1 --- int(-4294967296) --- testing: 9223372034707292160 << -1 --- Exception: Bit shift by negative number --- testing: 9223372034707292160 << 7 --- int(-274877906944) --- testing: 9223372034707292160 << 9 --- int(-1099511627776) --- testing: 9223372034707292160 << 65 --- int(0) --- testing: 9223372034707292160 << -44 --- Exception: Bit shift by negative number --- testing: 9223372034707292160 << 2147483647 --- int(0) --- testing: 9223372034707292160 << 9223372036854775807 --- int(0) --- testing: -9223372034707292160 << 0 --- int(-9223372034707292160) --- testing: -9223372034707292160 << 1 --- int(4294967296) --- testing: -9223372034707292160 << -1 --- Exception: Bit shift by negative number --- testing: -9223372034707292160 << 7 --- int(274877906944) --- testing: -9223372034707292160 << 9 --- int(1099511627776) --- testing: -9223372034707292160 << 65 --- int(0) --- testing: -9223372034707292160 << -44 --- Exception: Bit shift by negative number --- testing: -9223372034707292160 << 2147483647 --- int(0) --- testing: -9223372034707292160 << 9223372036854775807 --- int(0) --- testing: 2147483648 << 0 --- int(2147483648) --- testing: 2147483648 << 1 --- int(4294967296) --- testing: 2147483648 << -1 --- Exception: Bit shift by negative number --- testing: 2147483648 << 7 --- int(274877906944) --- testing: 2147483648 << 9 --- int(1099511627776) --- testing: 2147483648 << 65 --- int(0) --- testing: 2147483648 << -44 --- Exception: Bit shift by negative number --- testing: 2147483648 << 2147483647 --- int(0) --- testing: 2147483648 << 9223372036854775807 --- int(0) --- testing: -2147483649 << 0 --- int(-2147483649) --- testing: -2147483649 << 1 --- int(-4294967298) --- testing: -2147483649 << -1 --- Exception: Bit shift by negative number --- testing: -2147483649 << 7 --- int(-274877907072) --- testing: -2147483649 << 9 --- int(-1099511628288) --- testing: -2147483649 << 65 --- int(0) --- testing: -2147483649 << -44 --- Exception: Bit shift by negative number --- testing: -2147483649 << 2147483647 --- int(0) --- testing: -2147483649 << 9223372036854775807 --- int(0) --- testing: 4294967294 << 0 --- int(4294967294) --- testing: 4294967294 << 1 --- int(8589934588) --- testing: 4294967294 << -1 --- Exception: Bit shift by negative number --- testing: 4294967294 << 7 --- int(549755813632) --- testing: 4294967294 << 9 --- int(2199023254528) --- testing: 4294967294 << 65 --- int(0) --- testing: 4294967294 << -44 --- Exception: Bit shift by negative number --- testing: 4294967294 << 2147483647 --- int(0) --- testing: 4294967294 << 9223372036854775807 --- int(0) --- testing: 4294967295 << 0 --- int(4294967295) --- testing: 4294967295 << 1 --- int(8589934590) --- testing: 4294967295 << -1 --- Exception: Bit shift by negative number --- testing: 4294967295 << 7 --- int(549755813760) --- testing: 4294967295 << 9 --- int(2199023255040) --- testing: 4294967295 << 65 --- int(0) --- testing: 4294967295 << -44 --- Exception: Bit shift by negative number --- testing: 4294967295 << 2147483647 --- int(0) --- testing: 4294967295 << 9223372036854775807 --- int(0) --- testing: 4294967293 << 0 --- int(4294967293) --- testing: 4294967293 << 1 --- int(8589934586) --- testing: 4294967293 << -1 --- Exception: Bit shift by negative number --- testing: 4294967293 << 7 --- int(549755813504) --- testing: 4294967293 << 9 --- int(2199023254016) --- testing: 4294967293 << 65 --- int(0) --- testing: 4294967293 << -44 --- Exception: Bit shift by negative number --- testing: 4294967293 << 2147483647 --- int(0) --- testing: 4294967293 << 9223372036854775807 --- int(0) --- testing: 9223372036854775806 << 0 --- int(9223372036854775806) --- testing: 9223372036854775806 << 1 --- int(-4) --- testing: 9223372036854775806 << -1 --- Exception: Bit shift by negative number --- testing: 9223372036854775806 << 7 --- int(-256) --- testing: 9223372036854775806 << 9 --- int(-1024) --- testing: 9223372036854775806 << 65 --- int(0) --- testing: 9223372036854775806 << -44 --- Exception: Bit shift by negative number --- testing: 9223372036854775806 << 2147483647 --- int(0) --- testing: 9223372036854775806 << 9223372036854775807 --- int(0) --- testing: 9.2233720368548E+18 << 0 --- int(-9223372036854775808) --- testing: 9.2233720368548E+18 << 1 --- int(0) --- testing: 9.2233720368548E+18 << -1 --- Exception: Bit shift by negative number --- testing: 9.2233720368548E+18 << 7 --- int(0) --- testing: 9.2233720368548E+18 << 9 --- int(0) --- testing: 9.2233720368548E+18 << 65 --- int(0) --- testing: 9.2233720368548E+18 << -44 --- Exception: Bit shift by negative number --- testing: 9.2233720368548E+18 << 2147483647 --- int(0) --- testing: 9.2233720368548E+18 << 9223372036854775807 --- int(0) --- testing: -9223372036854775807 << 0 --- int(-9223372036854775807) --- testing: -9223372036854775807 << 1 --- int(2) --- testing: -9223372036854775807 << -1 --- Exception: Bit shift by negative number --- testing: -9223372036854775807 << 7 --- int(128) --- testing: -9223372036854775807 << 9 --- int(512) --- testing: -9223372036854775807 << 65 --- int(0) --- testing: -9223372036854775807 << -44 --- Exception: Bit shift by negative number --- testing: -9223372036854775807 << 2147483647 --- int(0) --- testing: -9223372036854775807 << 9223372036854775807 --- int(0) --- testing: -9.2233720368548E+18 << 0 --- int(-9223372036854775808) --- testing: -9.2233720368548E+18 << 1 --- int(0) --- testing: -9.2233720368548E+18 << -1 --- Exception: Bit shift by negative number --- testing: -9.2233720368548E+18 << 7 --- int(0) --- testing: -9.2233720368548E+18 << 9 --- int(0) --- testing: -9.2233720368548E+18 << 65 --- int(0) --- testing: -9.2233720368548E+18 << -44 --- Exception: Bit shift by negative number --- testing: -9.2233720368548E+18 << 2147483647 --- int(0) --- testing: -9.2233720368548E+18 << 9223372036854775807 --- int(0) --- testing: 0 << 9223372036854775807 --- int(0) --- testing: 0 << -9223372036854775808 --- Exception: Bit shift by negative number --- testing: 0 << 2147483647 --- int(0) --- testing: 0 << -2147483648 --- Exception: Bit shift by negative number --- testing: 0 << 9223372034707292160 --- int(0) --- testing: 0 << -9223372034707292160 --- Exception: Bit shift by negative number --- testing: 0 << 2147483648 --- int(0) --- testing: 0 << -2147483649 --- Exception: Bit shift by negative number --- testing: 0 << 4294967294 --- int(0) --- testing: 0 << 4294967295 --- int(0) --- testing: 0 << 4294967293 --- int(0) --- testing: 0 << 9223372036854775806 --- int(0) --- testing: 0 << 9.2233720368548E+18 --- Exception: Bit shift by negative number --- testing: 0 << -9223372036854775807 --- Exception: Bit shift by negative number --- testing: 0 << -9.2233720368548E+18 --- Exception: Bit shift by negative number --- testing: 1 << 9223372036854775807 --- int(0) --- testing: 1 << -9223372036854775808 --- Exception: Bit shift by negative number --- testing: 1 << 2147483647 --- int(0) --- testing: 1 << -2147483648 --- Exception: Bit shift by negative number --- testing: 1 << 9223372034707292160 --- int(0) --- testing: 1 << -9223372034707292160 --- Exception: Bit shift by negative number --- testing: 1 << 2147483648 --- int(0) --- testing: 1 << -2147483649 --- Exception: Bit shift by negative number --- testing: 1 << 4294967294 --- int(0) --- testing: 1 << 4294967295 --- int(0) --- testing: 1 << 4294967293 --- int(0) --- testing: 1 << 9223372036854775806 --- int(0) --- testing: 1 << 9.2233720368548E+18 --- Exception: Bit shift by negative number --- testing: 1 << -9223372036854775807 --- Exception: Bit shift by negative number --- testing: 1 << -9.2233720368548E+18 --- Exception: Bit shift by negative number --- testing: -1 << 9223372036854775807 --- int(0) --- testing: -1 << -9223372036854775808 --- Exception: Bit shift by negative number --- testing: -1 << 2147483647 --- int(0) --- testing: -1 << -2147483648 --- Exception: Bit shift by negative number --- testing: -1 << 9223372034707292160 --- int(0) --- testing: -1 << -9223372034707292160 --- Exception: Bit shift by negative number --- testing: -1 << 2147483648 --- int(0) --- testing: -1 << -2147483649 --- Exception: Bit shift by negative number --- testing: -1 << 4294967294 --- int(0) --- testing: -1 << 4294967295 --- int(0) --- testing: -1 << 4294967293 --- int(0) --- testing: -1 << 9223372036854775806 --- int(0) --- testing: -1 << 9.2233720368548E+18 --- Exception: Bit shift by negative number --- testing: -1 << -9223372036854775807 --- Exception: Bit shift by negative number --- testing: -1 << -9.2233720368548E+18 --- Exception: Bit shift by negative number --- testing: 7 << 9223372036854775807 --- int(0) --- testing: 7 << -9223372036854775808 --- Exception: Bit shift by negative number --- testing: 7 << 2147483647 --- int(0) --- testing: 7 << -2147483648 --- Exception: Bit shift by negative number --- testing: 7 << 9223372034707292160 --- int(0) --- testing: 7 << -9223372034707292160 --- Exception: Bit shift by negative number --- testing: 7 << 2147483648 --- int(0) --- testing: 7 << -2147483649 --- Exception: Bit shift by negative number --- testing: 7 << 4294967294 --- int(0) --- testing: 7 << 4294967295 --- int(0) --- testing: 7 << 4294967293 --- int(0) --- testing: 7 << 9223372036854775806 --- int(0) --- testing: 7 << 9.2233720368548E+18 --- Exception: Bit shift by negative number --- testing: 7 << -9223372036854775807 --- Exception: Bit shift by negative number --- testing: 7 << -9.2233720368548E+18 --- Exception: Bit shift by negative number --- testing: 9 << 9223372036854775807 --- int(0) --- testing: 9 << -9223372036854775808 --- Exception: Bit shift by negative number --- testing: 9 << 2147483647 --- int(0) --- testing: 9 << -2147483648 --- Exception: Bit shift by negative number --- testing: 9 << 9223372034707292160 --- int(0) --- testing: 9 << -9223372034707292160 --- Exception: Bit shift by negative number --- testing: 9 << 2147483648 --- int(0) --- testing: 9 << -2147483649 --- Exception: Bit shift by negative number --- testing: 9 << 4294967294 --- int(0) --- testing: 9 << 4294967295 --- int(0) --- testing: 9 << 4294967293 --- int(0) --- testing: 9 << 9223372036854775806 --- int(0) --- testing: 9 << 9.2233720368548E+18 --- Exception: Bit shift by negative number --- testing: 9 << -9223372036854775807 --- Exception: Bit shift by negative number --- testing: 9 << -9.2233720368548E+18 --- Exception: Bit shift by negative number --- testing: 65 << 9223372036854775807 --- int(0) --- testing: 65 << -9223372036854775808 --- Exception: Bit shift by negative number --- testing: 65 << 2147483647 --- int(0) --- testing: 65 << -2147483648 --- Exception: Bit shift by negative number --- testing: 65 << 9223372034707292160 --- int(0) --- testing: 65 << -9223372034707292160 --- Exception: Bit shift by negative number --- testing: 65 << 2147483648 --- int(0) --- testing: 65 << -2147483649 --- Exception: Bit shift by negative number --- testing: 65 << 4294967294 --- int(0) --- testing: 65 << 4294967295 --- int(0) --- testing: 65 << 4294967293 --- int(0) --- testing: 65 << 9223372036854775806 --- int(0) --- testing: 65 << 9.2233720368548E+18 --- Exception: Bit shift by negative number --- testing: 65 << -9223372036854775807 --- Exception: Bit shift by negative number --- testing: 65 << -9.2233720368548E+18 --- Exception: Bit shift by negative number --- testing: -44 << 9223372036854775807 --- int(0) --- testing: -44 << -9223372036854775808 --- Exception: Bit shift by negative number --- testing: -44 << 2147483647 --- int(0) --- testing: -44 << -2147483648 --- Exception: Bit shift by negative number --- testing: -44 << 9223372034707292160 --- int(0) --- testing: -44 << -9223372034707292160 --- Exception: Bit shift by negative number --- testing: -44 << 2147483648 --- int(0) --- testing: -44 << -2147483649 --- Exception: Bit shift by negative number --- testing: -44 << 4294967294 --- int(0) --- testing: -44 << 4294967295 --- int(0) --- testing: -44 << 4294967293 --- int(0) --- testing: -44 << 9223372036854775806 --- int(0) --- testing: -44 << 9.2233720368548E+18 --- Exception: Bit shift by negative number --- testing: -44 << -9223372036854775807 --- Exception: Bit shift by negative number --- testing: -44 << -9.2233720368548E+18 --- Exception: Bit shift by negative number --- testing: 2147483647 << 9223372036854775807 --- int(0) --- testing: 2147483647 << -9223372036854775808 --- Exception: Bit shift by negative number --- testing: 2147483647 << 2147483647 --- int(0) --- testing: 2147483647 << -2147483648 --- Exception: Bit shift by negative number --- testing: 2147483647 << 9223372034707292160 --- int(0) --- testing: 2147483647 << -9223372034707292160 --- Exception: Bit shift by negative number --- testing: 2147483647 << 2147483648 --- int(0) --- testing: 2147483647 << -2147483649 --- Exception: Bit shift by negative number --- testing: 2147483647 << 4294967294 --- int(0) --- testing: 2147483647 << 4294967295 --- int(0) --- testing: 2147483647 << 4294967293 --- int(0) --- testing: 2147483647 << 9223372036854775806 --- int(0) --- testing: 2147483647 << 9.2233720368548E+18 --- Exception: Bit shift by negative number --- testing: 2147483647 << -9223372036854775807 --- Exception: Bit shift by negative number --- testing: 2147483647 << -9.2233720368548E+18 --- Exception: Bit shift by negative number --- testing: 9223372036854775807 << 9223372036854775807 --- int(0) --- testing: 9223372036854775807 << -9223372036854775808 --- Exception: Bit shift by negative number --- testing: 9223372036854775807 << 2147483647 --- int(0) --- testing: 9223372036854775807 << -2147483648 --- Exception: Bit shift by negative number --- testing: 9223372036854775807 << 9223372034707292160 --- int(0) --- testing: 9223372036854775807 << -9223372034707292160 --- Exception: Bit shift by negative number --- testing: 9223372036854775807 << 2147483648 --- int(0) --- testing: 9223372036854775807 << -2147483649 --- Exception: Bit shift by negative number --- testing: 9223372036854775807 << 4294967294 --- int(0) --- testing: 9223372036854775807 << 4294967295 --- int(0) --- testing: 9223372036854775807 << 4294967293 --- int(0) --- testing: 9223372036854775807 << 9223372036854775806 --- int(0) --- testing: 9223372036854775807 << 9.2233720368548E+18 --- Exception: Bit shift by negative number --- testing: 9223372036854775807 << -9223372036854775807 --- Exception: Bit shift by negative number --- testing: 9223372036854775807 << -9.2233720368548E+18 --- Exception: Bit shift by negative number ===DONE===