summaryrefslogtreecommitdiff
path: root/ext/spl/tests/fixedarray_014.phpt
blob: a6f2fc188c6dc980c9c7f2864fc75717dfdee98a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
SPL: FixedArray: Trying to access inexistent item
--FILE--
<?php

try {
    $a = new SplFixedArray(NULL);
    echo $a[0]++;
} catch (Exception $e) {
    echo $e->getMessage();
}

?>
--EXPECT--
Index invalid or out of range