ID: 46283
User updated by: name at email dot com
Reported By: name at email dot com
-Status: Feedback
+Status: Open
Bug Type: Arrays related
Operating System: *
-PHP Version: 5CVS-2008-10-12
+PHP Version: 5CVS-2008-11-17
New Comment:
@jani
PHP Version 5.2.7RC4-dev
Build Date Nov 17 2008 11:39:11
array(1) {
["name"]=>
array(1) {
["�A�variable"]=>
array(2) {
[0]=>
string(3) "foo"
[1]=>
string(3) "foo"
}
}
}
Previous Comments:
------------------------------------------------------------------------
[2008-11-12 13:10:31] [EMAIL PROTECTED]
Please try using this CVS snapshot:
http://snaps.php.net/php5.2-latest.tar.gz
For Windows:
http://windows.php.net/snapshots/
------------------------------------------------------------------------
[2008-10-29 15:18:38] name at email dot com
@jani
1. passing two arrays.
2. they both contain a reference to an object.
3. i expect the function to preserve the structure of the object.
4. notice: ["�A�variable"] <-- whats that?
------------------------------------------------------------------------
[2008-10-26 19:19:46] [EMAIL PROTECTED]
What's the problem here? You're passing an object to a function
expecting arrays and think it will work..?
------------------------------------------------------------------------
[2008-10-12 22:14:15] name at email dot com
Description:
------------
Calling array_merge_recursive() produces an unclear warning ("recursion
detected in"...) and seems to be breaking the script. The above happens
if two conditions are met:
1. there is a private/protected data member in the object (see code).
2. the merged arrays contain at least one same string as key.
* please note: following code reproduces this problem on the latest
snaps of both 5.2.6 and 5.3
Reproduce code:
---------------
class A {
private $variable;
public function __construct() {
$this->variable = 'foo';
}
}
$x = new A;
$b = array_merge_recursive(array("name"=>$x),array("name"=>$x));
var_dump($b);
Expected result:
----------------
see 'Actual result' below...
Actual result:
--------------
array(1) {
["name"]=>
array(1) {
["�A�variable"]=>
array(2) {
[0]=>
string(3) "foo"
[1]=>
string(3) "foo"
}
}
}
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=46283&edit=1