summaryrefslogtreecommitdiff
path: root/ext/spl/tests/fixedarray_015.phpt
blob: 74814268e77994fead6e9728a20e990112cb4c81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
SPL: FixedArray: accessing uninitialized array
--FILE--
<?php

try {
    $a = new SplFixedArray('');
} catch (TypeError $iae) {
    echo "Ok - ".$iae->getMessage().PHP_EOL;
}

echo "Done\n";
?>
--EXPECT--
Ok - SplFixedArray::__construct() expects argument #1 ($size) to be of type int, string given
Done