summaryrefslogtreecommitdiff
path: root/ext/spl/tests/fixedarray_009.phpt
blob: 71d6a42a6fac03a27815a69ac56b1d9c801e955e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
SPL: FixedArray: Trying to instantiate passing string to constructor 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