summaryrefslogtreecommitdiff
path: root/ext/spl/tests/fixedarray_004.phpt
blob: 054fb3d9b53efa7d25d9d7dc003aef943fe9b89b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
SPL: FixedArray: adding new elements
--FILE--
<?php

$a = new SplFixedArray(10);

try {
    $a[] = 1;
} catch (Exception $e) {
    var_dump($e->getMessage());
}

?>
--EXPECT--
string(29) "Index invalid or out of range"