1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 01:32:22 +01:00
Files
archived-php-src/ext/spl/tests/fixedarray_010.phpt
2008-06-22 16:25:02 +00:00

20 lines
203 B
PHP

--TEST--
SPL: FixedArray: Setting size
--FILE--
<?php
$a = new SplFixedArray(0);
$a = new SplFixedArray(3);
$a[0] = 1;
$a->setSize(2);
$a->setSize(3);
$a->setSize(0);
print "ok\n";
?>
--EXPECT--
ok