Answers for "combine tow array in php"

PHP
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
0

merge array in php

$a1=array("red","green");
$a2=array("blue","green","yellow");
print_r(array_merge($a1,$a2));
Posted by: Guest on March-07-2021

Browse Popular Code Answers by Language