1
0
mirror of https://github.com/php/php-src.git synced 2026-04-08 00:22:52 +02: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