summaryrefslogtreecommitdiff
path: root/ext/spl/tests/fixedarray_014.phpt
blob: de8e214dc05b154fa9e988c9a8c86a83d080288e (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