summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplFixedArray_setsize_shrink.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/tests/SplFixedArray_setsize_shrink.phpt')
-rw-r--r--ext/spl/tests/SplFixedArray_setsize_shrink.phpt28
1 files changed, 28 insertions, 0 deletions
diff --git a/ext/spl/tests/SplFixedArray_setsize_shrink.phpt b/ext/spl/tests/SplFixedArray_setsize_shrink.phpt
new file mode 100644
index 0000000..2130cf8
--- /dev/null
+++ b/ext/spl/tests/SplFixedArray_setsize_shrink.phpt
@@ -0,0 +1,28 @@
+--TEST--
+shrink a full array of integers
+--CREDITS--
+PHPNW Testfest 2009 - Lorna Mitchell
+--FILE--
+<?php
+$array = new SplFixedArray(5);
+$array[0] = 1;
+$array[1] = 1;
+$array[2] = 1;
+$array[3] = 1;
+$array[4] = 1;
+
+$array->setSize(4);
+var_dump($array);
+
+?>
+--EXPECT--
+object(SplFixedArray)#1 (4) {
+ [0]=>
+ int(1)
+ [1]=>
+ int(1)
+ [2]=>
+ int(1)
+ [3]=>
+ int(1)
+}