1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 17:52:16 +01:00
Files
archived-php-src/ext/spl/tests/fixedarray_010.phpt
2008-06-18 14:54:28 +00:00

17 lines
149 B
PHP

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