blob: b6fd2f1e4e13bb8cce701abc1e9e6aa44fba23fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--TEST--
SPL: FixedArray: setsize - populate array, then shrink
--CREDITS--
PHPNW TestFest2009 - Rowan Merewood <rowan@merewood.org>
--FILE--
<?php
$array = new SplFixedArray(5);
$array[0] = 'one';
$array[1] = 'two';
$array[2] = 'three';
$array[3] = 'four';
$array[4] = 'five';
$array->setSize(2);
var_dump($array);
?>
--EXPECT--
object(SplFixedArray)#1 (2) {
[0]=>
string(3) "one"
[1]=>
string(3) "two"
}
|