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

19 lines
245 B
PHP

--TEST--
SPL: FixedArray: adding new elements
--FILE--
<?php
$a = new SplFixedArray(10);
try {
$a[] = 1;
} catch (Exception $e) {
var_dump($e->getMessage());
}
?>
===DONE===
--EXPECTF--
string(29) "Index invalid or out of range"
===DONE===