summaryrefslogtreecommitdiff
path: root/ext/spl/tests
diff options
context:
space:
mode:
authorXinchen Hui <laruence@php.net>2013-02-24 12:59:10 +0800
committerXinchen Hui <laruence@php.net>2013-02-24 12:59:10 +0800
commite75804c34ef60e22db79850dc1f77948e6b51ea3 (patch)
tree0e046c847dc7dc2cef65dddd5e8fd39cffd150c0 /ext/spl/tests
parent59ec22b370a74e9af62fdea68550feade6f36c81 (diff)
parentd24ac6953ec8ca147243363eeacc8772d265b6cc (diff)
downloadphp-git-e75804c34ef60e22db79850dc1f77948e6b51ea3.tar.gz
Merge branch 'PHP-5.4' into PHP-5.5
Diffstat (limited to 'ext/spl/tests')
-rw-r--r--ext/spl/tests/bug64264.phpt29
1 files changed, 29 insertions, 0 deletions
diff --git a/ext/spl/tests/bug64264.phpt b/ext/spl/tests/bug64264.phpt
new file mode 100644
index 0000000000..e7b695bd82
--- /dev/null
+++ b/ext/spl/tests/bug64264.phpt
@@ -0,0 +1,29 @@
+--TEST--
+Bug #64264 (SPLFixedArray toArray problem)
+--FILE--
+<?php
+class MyFixedArray extends \SplFixedArray {
+ protected $foo;
+ protected $bar;
+}
+
+$myFixedArr = new MyFixedArray(1);
+$myFixedArr[0] = 'foo';
+$myFixedArr->setSize(2);
+$myFixedArr[1] = 'bar';
+$myFixedArr->setSize(5);
+$array = $myFixedArr->toArray();
+$array[2] = "ERROR";
+$array[3] = "ERROR";
+$array[4] = "ERROR";
+unset($array[4]);
+$myFixedArr->setSize(2);
+
+print_r($myFixedArr->toArray());
+?>
+--EXPECTF--
+Array
+(
+ [0] => foo
+ [1] => bar
+)