Answers for "how to make from 2 asociative arrays one in php"

PHP
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

merge three array in php

$array1 = Array
(
    '05/01',
    '05/02'
);

    $array2 = Array
(
    'ED',
    'P'
);

$array3 =Array
(
    'Mon',
    'Tue'
);
$result_array = array();
foreach ($array1 as $key=>$val)
{
    $result_array[$key] = array($array1[$key],$array2[$key],$array3[$key]);
}
echo "<PRE>"; print_r($result_array);
Posted by: Guest on November-15-2020

Code answers related to "how to make from 2 asociative arrays one in php"

Browse Popular Code Answers by Language