Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8670551
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T18:44:02+00:00 2026-06-12T18:44:02+00:00

Say I have two arrays: $arr = array(‘k1’ => ‘v1’, ‘k2’ => ‘v2’); $arr2

  • 0

Say I have two arrays:

$arr =  array('k1' => 'v1', 
              'k2' => 'v2');
$arr2 = array('k3' => 'v3', 
              'k4' => 'v4');

I want to merge $arr2 into $arr, so that I end up with:

$arr =  array('k1' => 'v1', 
              'k2' => 'v2',
              'k3' => 'v3', 
              'k4' => 'v4');

There is one basic requirement: the solution must change $arr itself, like functions that take a reference to the array (array_push(), array_splice()) would do.

  • I don’t want to use $arr = array_merge($arr, $arr2) because it creates a copy.
  • I don’t want to iterate through $arr2 :

    // this is not an option
    foreach ($arr2 as $k => $v)
    {
        $arr[$k] = $v;
    }
    

How can I merge two associative arrays while preserving their keys?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T18:44:03+00:00Added an answer on June 12, 2026 at 6:44 pm

    You can try this:

    $arr += $arr2;
    

    I’ve tested memory usage:

    for ($i=0; $i<1000000; $i++) $a[]=1;
    echo memory_get_peak_usage(), "\n";
    for ($i=0; $i<1000000; $i++) $b[]=1;
    echo memory_get_peak_usage(), "\n";
    $a += $b;
    echo memory_get_peak_usage(), "\n";
    

    This outputs:

    209135144
    417540744
    417540872
    

    So while one array with 1 M elements uses about 200 MB, and the overall peak is about 400 MB, PHP apparently did not create a copy, otherwise the peak memory would be around 600 MB ($a, $b and $a + $b).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's ets say I have two arrays: $arr1 = array("a","b","c"); $arr2 = array("1","2","3"); function
Let's say we have a two dimensional arrays, arr[N][N] , where N is a
I have two arrays, say A={1, 2, 3} and B={2, 4, 8} (array item
I have two arrays, say A and B with |A|=8 and |B|=4. I want
let's say I have two arrays like so: $array1 = array('A' => array( 'B'
Say I have two complex nested arrays in PHP, like these: $a = array(
How to compare the similarity between two arrays? Say I have: Base Array: [.5,0,0,0,.25,0,0,.25,0,0,0,0]
Let's say I have two arrays: a = [1,2,3] b = [1,2] I want
Let's say that I have two arrays in the form a = [0, 0,
i have two double arrays, let's say A and B. i want to compare

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.