php-src/Zend/tests/bug45877.phpt

24 lines
352 B
Plaintext
Raw Normal View History

--TEST--
Bug #45877 (Array key '2147483647' left as string)
2009-03-18 16:30:04 +00:00
--INI--
precision=20
--FILE--
<?php
$keys = array(PHP_INT_MAX,
(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)
[u"%d8"]=>
int(1)
}