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

17 lines
149 B
Plaintext
Raw Normal View History

2008-06-07 14:10:42 +00:00
--TEST--
SPL: FixedArray: Setting size to 0
2008-06-07 14:10:42 +00:00
--FILE--
<?php
$a = new SplFixedArray(1);
2008-06-07 14:10:42 +00:00
$a[0] = 1;
$a->setSize(0);
print "ok\n";
?>
--EXPECT--
ok