php-src/ext/spl/tests/SplArray_fromArray.phpt
2009-05-23 15:38:18 +00:00

17 lines
366 B
PHP

--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