diff options
| author | Xinchen Hui <laruence@php.net> | 2013-02-24 12:55:46 +0800 |
|---|---|---|
| committer | Xinchen Hui <laruence@php.net> | 2013-02-24 12:55:53 +0800 |
| commit | 1b58bd39a637e9ec4ea9e95903b74aefdbd1b596 (patch) | |
| tree | 88a8623346e0e2f04836fc5834f7266f968fd97f /ext/spl/tests | |
| parent | fcd4b5335a6df4e0676ee32e2267ca71d70fe623 (diff) | |
| download | php-git-1b58bd39a637e9ec4ea9e95903b74aefdbd1b596.tar.gz | |
Fixed bug #64264 (SPLFixedArray toArray problem)
Diffstat (limited to 'ext/spl/tests')
| -rw-r--r-- | ext/spl/tests/bug64264.phpt | 29 |
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 +) |
