PHP  
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  
<array_maparray_merge>
view the version of this page
Last updated: Tue, 28 Jun 2005

array_merge_recursive

(PHP 4 >= 4.0.1, PHP 5)

array_merge_recursive -- rekurzívan egyesít két vagy több tömböt

Leírás

array array_merge_recursive ( array array1, array array2 [, array ...] )

Az array_merge_recursive() egyesíti két vagy több tömb elemeit úgy, hogy az egyik elemeit a másik után fűzi, és visszadja az eredményül kapott tömböt.

Ha a megadott tömbökben ugyanolyan string kulcsok vannak, akkor az ezekhez tartozó elemértékeket egy tömbbe gyűjti össze. Ezt rekurzívan teszi a függvény, tehát ha az elemek egyike ugyancsak tömb, akkor ennek a tömbnek az elemeire is hasonlóképp lefut az egyesítő algoritmus. Ha viszont a numerikus indexek egyeznek meg, akkor a későbbi nem felülírja a korábbi értéket, hanem azok után fűzi.

Példa 1. array_merge_recursive() példa

<?php
$tomb1
= array("szín" => array("kedvenc" => "piros"), 5);
$tomb2 = array(10, "szín" => array("kedvenc" => "zöld", "kék"));
$eredmeny = array_merge_recursive($tomb1, $tomb2);
?>

Az $eredmeny tömb értéke:

Array
(
  [szín] => Array
     (
         [kedvenc] => Array
             (
                 [0] => piros
                 [1] => zöld
             )

         [0] => kék
     )

  [0] => 5
  [1] => 10
)

Lásd még: array_merge()!



add a note add a note User Contributed Notes
array_merge_recursive
jason at ebasterpro dot com
19-Aug-2005 09:56
This modifications allows you to merge arrays of objects and objects of arrays recursively.
/**
 * arrayobj_merge_recursive2()
 *
 * Similar to array_merge_recursive2 but supports objects and arrays, keyed-valued are always overwritten.
 * Priority goes to the 2nd array. And support Object Array mixture
 *
 * @static yes
 * @public yes
 * @param $paArray1 array/object
 * @param $paArray2 array/object
 * @return array/object
 */
function arrayobj_merge_recursive2($paArray1, $paArray2)
{
   if(is_array($paArray2))
   {
       foreach ($paArray2 AS $sKey2 => $sValue2)
       {
           $paArray1[$sKey2] = arrayobj_merge_recursive2(@$paArray1[$sKey2], $sValue2);
       }
   }
   elseif(is_object($paArray2))
   {   
       foreach ($paArray2 AS $sKey2 => $sValue2)
       {
             $paArray1->{$sKey2} = arrayobj_merge_recursive2(@$paArray1->{$sKey2}, $sValue2);
       } 
   } else {
         return $paArray2;
   } 
   return $paArray1;
}
mikeo
05-Apr-2005 08:42
Similarly, you can cast variables to type array.  This is especially useful if you're passing arrays by reference.

function addHeader(&$lArray, $description = null)
{
   ...

   $lArray = array_merge_recursive((array)$lArray, $tmpArray);

   ...
}
fire at firepages dot com dot au
20-Dec-2004 07:10
PHP5 note , in PHP4 you could pass an uninitialised array to array_merge_recursive which would issue a notice but not break anything ..

while( $whatever){
 $uninitialised_array = array_merge_recursive( $uninitialised_array, $t ) ;
}

in PHP5 , if you dont initialise the array the recursion never starts so $uninitialised_array = array(); solves (good practive anyway I suppose?)
manicdepressive at mindless dot com
22-Jun-2004 07:30
Please be aware that under circumstances where you have
both the key and value common between the two arrays at a given node,
array_merge_recursive() will behave differently if that value is NULL,
as opposed to a non-null value.

i.e., I expected the results of the first two sections below to
have the same structure, but they don't. 
If this might apply to you, please see for yourself.

<pre><?php

$a1
= array('a'=>'b');
$a2 = array('a'=>'b');
$a3 = array_merge_recursive($a1,$a2);
var_export($a3);
echo
"\n\n";

$a1 = array('a'=>NULL);
$a2 = array('a'=>NULL);
$a3 = array_merge_recursive($a1,$a2);
var_export($a3);
echo
"\n\n";

$a1 = array('a'=>'b');
$a2 = array('a'=>NULL);
$a3 = array_merge_recursive($a1,$a2);
var_export($a3);
echo
"\n\n";

?></pre>

This behavior also occurs if the value is the empty array.
In fact, in the above example, interchanging the empty array with
any and all occurences of NULL will yield the same result.

   code till dawn!  -mark
brian at vermonster dot com
25-May-2004 02:44
Here is a fairly simple function that replaces while recursing.

<?php
/**
 * array_merge_recursive2()
 *
 * Similar to array_merge_recursive but keyed-valued are always overwritten.
 * Priority goes to the 2nd array.
 *
 * @static yes
 * @public yes
 * @param $paArray1 array
 * @param $paArray2 array
 * @return array
 */
function array_merge_recursive2($paArray1, $paArray2)
{
   if (!
is_array($paArray1) or !is_array($paArray2)) { return $paArray2; }
   foreach (
$paArray2 AS $sKey2 => $sValue2)
   {
      
$paArray1[$sKey2] = array_merge_recursive2(@$paArray1[$sKey2], $sValue2);
   }
   return
$paArray1;
}

?>

Examples:
<?php

$array1
= array(
  
'liquids' => array(
      
'water' => array('cold', 'fizzy', 'clean')
       ,
'beer' => 'warm'
  
)
);

$array2 = array(
  
'liquids' => array(
      
'water' => 'hot'
      
,'milk' => 'wet'
  
)
);

$result1 = array_merge_recursive2($array1, $array2);
$result2 = array_merge_recursive2($array2, $array1);
?>

Result 1 is:
Array
(
   [liquids] => Array
       (
           [water] => hot
           [beer] => warm
           [milk] => wet
       )
)

Result 2 is:
Array
(
   [liquids] => Array
       (
           [water] => Array
               (
                   [0] => cold
                   [1] => fizzy
                   [2] => clean
               )

           [milk] => wet
           [beer] => warm
       )
)
paska at kios dot sk
04-Mar-2004 02:18
This emulates replace of $_REQUEST according to variable_order=GPC.
<?
  
function array_merge_replace($array, $newValues) {
       foreach (
$newValues as $key => $value ) {
           if (
is_array($value)) {
               if (!isset(
$array[$key])) {
                  
$array[$key] = array();
               }
              
$array[$key] = array_merge_replace($array[$key], $value);
           } else {
              
$array[$key] = $value;
           }
       }
       return
$array;
   }

  
$_REQUEST = array_merge_replace($_REQUEST, $_GET);
  
$_REQUEST = array_merge_replace($_REQUEST, $_POST);
  
$_REQUEST = array_merge_replace($_REQUEST, $_COOKIE);
?>

Useful with stripping backslashes at beginning of main include file:
<?
if (get_magic_quotes_gpc() == 1) {

   function
stripMagicSlashes($element) {
       if (
is_array($element)) {
           return
array_map("stripMagicSlashes", $element);
       } else {
           return
stripslashes($element);
       }
   }

   function
array_merge_replace($array, $newValues) {
       foreach (
$newValues as $key => $value ) {
           if (
is_array($value)) {
               if (!isset(
$array[$key])) {
                  
$array[$key] = array();
               }
              
$array[$key] = array_merge_replace($array[$key], $value);
           } else {
              
$array[$key] = $value;
           }
       }
       return
$array;
   }

  
$_GET    = array_map("stripMagicSlashes", $_GET);
  
$_POST  = array_map("stripMagicSlashes", $_POST);
  
$_COOKIE = array_map("stripMagicSlashes", $_COOKIE);

  
$_REQUEST = array_merge_replace($_REQUEST, $_GET);
  
$_REQUEST = array_merge_replace($_REQUEST, $_POST);
  
$_REQUEST = array_merge_replace($_REQUEST, $_COOKIE);

}

$GLOBALS['stripped'] = true;
?>

Based on examples from users from this site.
t dot tom at succont dot de
08-Jan-2004 08:09
Here my modification of shemari's Code for Replacing Values in an Array. My modification will return the new Array, not handle it by reference.
Original Array will not be touched.

Hope it helps anyone. Most thanks goes to shemari ;o)

<?php
  
/**
     * Merges two arrays and replace existing Entrys
     *
     * Merges two Array like the PHP Function array_merge_recursive.
     * The main difference is that existing Keys will be replaced with new Values,
     * not combined in a new Sub Array.
     *
     * Usage:
     *        $newArray = array_merge_replace( $array, $newValues );
     *
     * @access puplic
     * @author Tobias Tom <[email protected]>
     * @param array $array First Array with 'replaceable' Values
     * @param array $newValues Array which will be merged into first one
     * @return array Resulting Array from replacing Process
     */
function array_merge_replace( $array, $newValues ) {
   foreach (
$newValues as $key => $value ) {
       if (
is_array( $value ) ) {
               if ( !isset(
$array[ $key ] ) ) {
              
$array[ $key ] = array();
           }
          
$array[ $key ] = $this->array_merge_replace( $array[ $key ], $value );
       } else {
           if ( isset(
$array[ $key ] ) && is_array( $array[ $key ] ) ) {
              
$array[ $key ][ 0 ] = $value;
           } else {
               if ( isset(
$array ) && !is_array( $array ) ) {
                  
$temp = $array;
                  
$array = array();
                  
$array[0] = $temp;
               }
              
$array[ $key ] = $value;
           }
       }
   }
   return
$array;
}
?>
shemari75 at mixmail dot com
18-Dec-2003 09:22
Here's a function to recursively merge any number of any-dimensional arrays.
It actually works in quite a similar way as array_merge_recursive does, but with two major differences:
- Later elements overwrite previous ones having the same keys.
- Numeric keys are not appended. Instead, they are converted into associative ones, and therefore overwritten as stated above.

Usage:
   array array_merge_n(array array1, array array2[, array ...])

<?php
  
/**
     *  Merges two arrays of any dimension
     *
     *  This is the process' core!
     *  Here each array is merged with the current resulting one
     *
     *  @access private
     *  @author Chema Barcala Calveiro <[email protected]>
     *  @param array $array  Resulting array - passed by reference
     *  @param array $array_i Array to be merged - passed by reference
     */

  
function array_merge_2(&$array, &$array_i) {
      
// For each element of the array (key => value):
      
foreach ($array_i as $k => $v) {
          
// If the value itself is an array, the process repeats recursively:
          
if (is_array($v)) {
               if (!isset(
$array[$k])) {
                  
$array[$k] = array();
               }
              
array_merge_2($array[$k], $v);

          
// Else, the value is assigned to the current element of the resulting array:
          
} else {
               if (isset(
$array[$k]) && is_array($array[$k])) {
                  
$array[$k][0] = $v;
               } else {
                   if (isset(
$array) && !is_array($array)) {
                      
$temp = $array;
                      
$array = array();
                      
$array[0] = $temp;
                   }
                  
$array[$k] = $v;
               }
           }
       }
   }

  
/**
     *  Merges any number of arrays of any dimension
     *
     *  The arrays to be merged are passed as arguments to the function,
     *  which uses an external function (array_merge_2) to merge each of them
     *  with the resulting one as it's being constructed
     *
     *  @access public
     *  @author Chema Barcala Calveiro <[email protected]>
     *  @return array Resulting array, once all have been merged
     */

  
function array_merge_n() {
      
// Initialization of the resulting array:
      
$array = array();

      
// Arrays to be merged (function's arguments):
      
$arrays =& func_get_args();

      
// Merging of each array with the resulting one:
      
foreach ($arrays as $array_i) {
           if (
is_array($array_i)) {
              
array_merge_2($array, $array_i);
           }
       }

       return
$array;
   }
?>

<array_maparray_merge>
 Last updated: Tue, 28 Jun 2005
show source | credits | sitemap | contact | advertising | mirror sites 
Copyright © 2001-2006 The PHP Group
All rights reserved.
This mirror generously provided by: Hurricane Electric
Last updated: Mon May 8 12:15:34 2006 PDT