Answers for "array merge"

PHP
10

php array_merge

<?php
$array1 = array("color" => "red", 2, 4);
$array2 = array("a", "b", "color" => "green", "shape" => "trapezoid", 4);
$result = array_merge($array1, $array2);
print_r($result);
?>
Array
(
    [color] => green
    [0] => 2
    [1] => 4
    [2] => a
    [3] => b
    [shape] => trapezoid
    [4] => 4
)
Posted by: Guest on June-25-2020
25

merge array in js

//for ES5
var array1 = ["Rahul", "Sachin"];
var array2 = ["Sehwag", "Kohli"];

var output = array1.concat(array2);
console.log(output);

//for ES6, we use spread operators to concat arrays

var array1 = ["Dravid", "Tendulkar"];
var array2 = ["Virendra", "Virat"];

var output = [...array1, ...array2];
console.log(output);
Posted by: Guest on April-28-2020
4

php merge 2 arrays

<?php
  $array1 = [
      "color" => "green"
  ];
  $array2 = [
      "color" => "red", 
      "color" => "blue"
  ];
  $result = array_merge($array1, $array2);
?>

// $result
[
    "color" => "green"
    "color" => "red", 
    "color" => "blue"
]
Posted by: Guest on May-01-2020
2

php array merge for associative arrays

<?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.
Posted by: Guest on March-25-2020
0

jquery array merge

// Merge the contents of two arrays together into the first array.
jQuery.merge( first, second );

// Merge two arrays
$.merge( [ 0, 1, 2 ], [ 2, 3, 4 ] ); // [ 0, 1, 2, 2, 3, 4 ]

// Get a copy of an array
let newArray = $.merge( [], [ 1, 2, 3, 4 ] );
Posted by: Guest on September-02-2020
5

php combine arrays

$output = array_merge($array1, $array2);
Posted by: Guest on June-03-2020

Browse Popular Code Answers by Language