php-src/ext/spl/tests/fixedarray_004.phpt
2008-06-18 14:54:28 +00:00

19 lines
246 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--
unicode(29) "Index invalid or out of range"
===DONE===