Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
$arr = array('one' => array('one_1' => array('one_2' => '12')), 'two', 'three');
$arr2 = array('one_2' => 'twelve');

$merge = array_merge($arr, $arr2);

print '<pre>';
var_dump($merge);
print '</pre>';

gives:

  array(4) {
  ["one"]=>
  array(1) {
    ["one_1"]=>
    array(1) {
      ["one_2"]=>
      string(2) "12"
    }
  }
  [0]=>
  string(3) "two"
  [1]=>
  string(5) "three"
  ["one_2"]=>
  string(6) "twelve"
}

I want the value of key one_2 in the first array to be replaced with the value of the same key in the second array. So the result would be:

array(4) {
  ["one"]=>
  array(1) {
    ["one_1"]=>
    array(1) {
      ["one_2"]=>
      string(2) "twelve"
    }
  }
  [0]=>
  string(3) "two"
  [1]=>
  string(5) "three"
}
share|improve this question

1 Answer

up vote 1 down vote accepted
array_walk_recursive($arr, function (&$value, $key, $replacements) {
    if (isset($replacements[$key])) {
        $value = $replacements[$key];
    }
}, $arr2);

Note that this uses PHP 5.3+ syntax.

share|improve this answer
I see. We are using 5.2 :-\ – jilseego Oct 19 '11 at 9:24
Then you can simply rewrite this as normal function declaration or even using create_function. See php.net/manual/en/… and php.net/array_walk_recursive – deceze Oct 19 '11 at 9:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.