summaryrefslogtreecommitdiff
path: root/ext/spl/tests/fixedarray_009.phpt
blob: d67c7ccb6983b53f020368d6698c6316b77eca66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
SPL: FixedArray: Trying to instantiate passing string to construtor parameter
--FILE--
<?php

try {
	$a = new SplFixedArray('FOO');
}
catch(InvalidArgumentException $iae) {
	echo "Ok - ".$iae->getMessage().PHP_EOL;
}
?>
--EXPECTF--
Ok - SplFixedArray::__construct() expects parameter 1 to be integer, string given