php-src/Zend/tests/bug45877.phpt

24 lines
362 B
Plaintext
Raw Normal View History

--TEST--
Bug #45877 (Array key '2147483647' left as string)
2009-03-18 16:30:21 +00:00
--INI--
2010-03-03 18:19:35 +00:00
precision=16
--FILE--
<?php
$keys = array(PHP_INT_MAX,
2020-02-03 21:52:20 +00:00
(string) PHP_INT_MAX,
(string) (-PHP_INT_MAX - 1),
-PHP_INT_MAX - 1,
(string) (PHP_INT_MAX + 1));
var_dump(array_fill_keys($keys, 1));
?>
--EXPECTF--
array(3) {
[%d7]=>
int(1)
[-%d8]=>
int(1)
2010-03-03 18:19:35 +00:00
["%s"]=>
int(1)
}