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

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