summaryrefslogtreecommitdiff
path: root/ext/spl/tests/fixedarray_014.phpt
blob: 75108b5868476460f93979511746e782b1251b68 (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(0);
    echo $a[0]++;
} catch (Exception $e) {
    echo $e->getMessage();
}

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