user27485
0
Q:

php combine values of two arrays

/* Array merge is basically use to merge the two array data. */
  
<?php
$a1=array("red","green");
$a2=array("blue","green","yellow");
print_r(array_merge($a1,$a2));
?>
  
/*
Output:
Array ( [0] => red [1] => green [2] => blue [3] => green [4] => yellow )
*/
  
<?php
$a1=array("a"=>"red","b"=>"green");
$a2=array("c"=>"blue","b"=>"yellow");
print_r(array_merge($a1,$a2));
?>

/*
Output:
Array ( [a] => red [b] => yellow [c] => blue )
*/
  
/* In above example you can check the difference in output 
it takes all values of both array in final output, but not in associative array you can check.
because one value gets overwritten by same key reference in both array.
*/
3
<?php

$array1 = array('key1' => 'test1', 'key2' => 'test2');
$array2 = array('key3' => 'test3', 'key4' => 'test4');

$resultArray = array_merge($array1, $array2);

// If you have numeric or numeric like keys, array_merge will 
// reset the keys to 0 and start numbering from there

$resultArray = $array1 + $array2;

// Using the addition operator will allow you to preserve your keys,
// however any duplicate keys will be ignored.
2
$output = array_merge($array1, $array2);
3
<?php
  $array1 = [
      "color" => "green"
  ];
  $array2 = [
      "color" => "red", 
      "color" => "blue"
  ];
  $result = array_merge($array1, $array2);
?>

// $result
[
    "color" => "green"
    "color" => "red", 
    "color" => "blue"
]
2
$all_arrays = array_merge($array1, $array2, $array3, ...);
0

New to Communities?

Join the community