php-src/ext/spl/tests/SplFixedArray_setSize_param_null.phpt
2009-05-23 15:38:18 +00:00

14 lines
254 B
PHP

--TEST--
SplFixedArray::setSize() with a null parameter
--CREDITS--
PHPNW Testfest 2009 - Adrian Hardy
--FILE--
<?php
$fixed_array = new SplFixedArray(2);
$fixed_array->setSize(null);
var_dump($fixed_array);
?>
--EXPECT--
object(SplFixedArray)#1 (0) {
}