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