mirror of
https://github.com/php/php-src.git
synced 2024-12-12 11:23:53 +08:00
11 lines
265 B
PHP
11 lines
265 B
PHP
--TEST--
|
|
Bug #69892: Different arrays compare indentical 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)
|