|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-06-16 02:05 UTC] derick@php.net
[2003-06-16 03:55 UTC] camka at email dot ee
[2003-06-16 12:37 UTC] iliaa@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 22:00:01 2025 UTC |
Description: ------------ When var_dumping $f it appears a notice message, saying Warning: array_merge_recursive(): recursion detected in ... It is kind of strange because as far as I expect it is supposed to be the same result as in the line where $e is being var_dumped. var_dump($e) gives correct result: array 'a' => array 0 => 'aa' 1 => 'aa' 'b' => array 0 => 'bb' 1 => 'bb' and var_dump($f) gives notece message and result is array 'a' => 'aa' 'b' => 'bb' problem appears in 4.3.1 too, but not in 4.2.2 Reproduce code: --------------- <?php $c=array('a' => 'aa','b' => 'bb'); $d=array('a' => 'aa','b' => 'bb'); $a=$c; $b=$c; $f=array_merge_recursive($a,$b); var_dump($f); $e=array_merge_recursive($c,$d); var_dump($e); ?> Expected result: ---------------- array 'a' => array 0 => 'aa' 1 => 'aa' 'b' => array 0 => 'bb' 1 => 'bb' array 'a' => array 0 => 'aa' 1 => 'aa' 'b' => array 0 => 'bb' 1 => 'bb' Actual result: -------------- Warning: array_merge_recursive(): recursion detected in c:\servak\www\tests\array_merge_recursive.php on line 9 array 'a' => 'aa' 'b' => 'bb' array 'a' => array 0 => 'aa' 1 => 'aa' 'b' => array 0 => 'bb' 1 => 'bb'