Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to merge an associative array into another associative array. I know php's array_merge but it returns a new array. That's not what I want.

Eg

$ar1 = array('one'=>1, 'two'=>2, 'three'=>3);
$ar2 = array('four'=>4, 'five'=>5);

I want to know that is there a php function which I can use to merge $ar2 into $ar1. The result should be,

$ar1 = array('one'=>1, 'two'=>2, 'three'=>3, 'four'=>4, 'five'=>5);
share|improve this question
2  
Can't you just use array_merge like this then: $ar1 = array_merge($ar1, $ar2); – Krister Andersson Nov 24 '12 at 5:56
Without using array_merge you'd have to write a loop that combines them manually. Why can't you have a new array? – PRPGFerret Nov 24 '12 at 5:58
@KristerAndersson Yep :). I feel shame on me. Thanks anyway – G45 Nov 24 '12 at 6:02
possible duplicate of PHP append one array to another (not array_push or +) – hakre Nov 24 '12 at 11:11

closed as too localized by David Segonds, mmmshuddup, hakre, Jocelyn, j0k Nov 24 '12 at 13:52

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

4 Answers

$ar1 = array('one'=>1, 'two'=>2, 'three'=>3);
$ar2 = array('four'=>4, 'five'=>5);

use array_merge

$array3 = array_merge($ar1,$ar2);

it will merge the 2 array and store it in $array3. You can use $ar1 also.

working example http://codepad.viper-7.com/KzCHIB

share|improve this answer
foreach ($ar2 as $key => $value) {
    $ar1[$key] = $value;
}

This simply takes the contents of array2 and concatenates them into array1. Array2 is not modified. No new array is returned. Hope this answers your quesiton.

share|improve this answer
$ar1 = array('one'=>1, 'two'=>2, 'three'=>3);
$ar2 = array('four'=>4, 'five'=>5);

$ar1 = array_merge($ar1, $ar2);

print_r($ar1);
share|improve this answer

The easiest way is to assign output of array_merge to your first array. Is this you want

<?php
$ar1 = array('one'=>1, 'two'=>2, 'three'=>3);
$ar2 = array('four'=>4, 'five'=>5);

$ar1 = array_merge($ar1,$ar2);

print_r($ar1);
?>
share|improve this answer

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