1
0
mirror of https://github.com/php/php-src.git synced 2026-04-03 22:22:18 +02:00
Files
archived-php-src/ext/spl/tests/fixedarray_009.phpt
2020-01-16 09:46:47 +01:00

14 lines
305 B
PHP

--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