php-src/ext/spl/tests/fixedarray_015.phpt

17 lines
291 B
Plaintext
Raw Normal View History

2008-06-07 21:36:13 +00:00
--TEST--
SPL: FixedArray: accessing uninitialized array
2008-06-07 21:36:13 +00:00
--FILE--
<?php
try {
2015-03-01 13:44:55 +00:00
$a = new SplFixedArray('');
} catch (TypeError $iae) {
2015-03-01 13:44:55 +00:00
echo "Ok - ".$iae->getMessage().PHP_EOL;
2008-06-07 21:36:13 +00:00
}
echo "Done\n";
?>
2018-10-14 15:45:48 +00:00
--EXPECT--
Ok - SplFixedArray::__construct() expects parameter 1 to be int, string given
2008-06-07 21:36:13 +00:00
Done