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

15 lines
152 B
PHP

--TEST--
SPL: FixedArray: Testing setSize() with NULL
--FILE--
<?php
$a = new SplFixedArray(100);
$a->setSize(NULL);
print "ok\n";
?>
--EXPECT--
ok