php-src/ext/spl/tests/SplArray_fromArray.phpt

17 lines
366 B
Plaintext
Raw Normal View History

2009-05-23 15:37:36 +00:00
--TEST--
Check that SplArray::fromArray will not allow integer overflows
--CREDITS--
Rob Knight <themanhimself@robknight.org.uk> PHPNW Test Fest 2009
--FILE--
<?php
$array = array(PHP_INT_MAX => 'foo');
$splArray = new SplFixedArray();
try {
$splArray->fromArray($array);
} catch (Exception $e) {
echo $e->getMessage();
}
?>
--EXPECT--
integer overflow detected