1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 00:32:23 +01:00
Files
archived-php-src/ext/spl/tests/SplFixedArray_setSize_param_array.phpt
2014-12-21 13:23:02 +00:00

19 lines
388 B
PHP

--TEST--
SplFixedArray::setSize() with an array parameter
--CREDITS--
PHPNW Testfest 2009 - Adrian Hardy
--FILE--
<?php
$fixed_array = new SplFixedArray(2);
$fixed_array->setSize(array());
var_dump($fixed_array);
?>
--EXPECTF--
Warning: SplFixedArray::setSize() expects parameter 1 to be integer, array given in %s on line %d
object(SplFixedArray)#1 (2) {
[0]=>
NULL
[1]=>
NULL
}