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

14 lines
254 B
Plaintext
Raw Normal View History

2009-05-23 15:37:36 +00:00
--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) {
}