1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/ext/spl/tests/fixedarray_009.phpt
2015-05-16 16:49:14 -05:00

14 lines
309 B
PHP

--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;
}
?>
--EXPECTF--
Ok - SplFixedArray::__construct() expects parameter 1 to be integer, string given