blob: f6380449350d91f4ff37657ba2da32c20e5401d0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
--TEST--
Bug #69892: Different arrays compare identical due to integer key truncation
--SKIPIF--
<?php if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platforms only"); ?>
--FILE--
<?php
var_dump([0 => 0] === [0x100000000 => 0]);
?>
--EXPECT--
bool(false)
|