fixedarray_011.phpt   [plain text]


--TEST--
SPL: FixedArray: Testing setSize() with NULL
--FILE--
<?php

$a = new SplFixedArray(100);

$a->setSize(NULL);

print "ok\n";

?>
--EXPECT--
ok