merge 2 array into one array using for loop php code example
Example: 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"
]