PHP merge values of numeric arrays in corresponding keys

孤者浪人 提交于 2020-01-04 09:05:11

问题


So consider an array with my 3 favorite fruits:

$array1 = array("Apple", "Banana","Raspberry")

I want to merge it with their own beautiful and natural color

$array2 = array("Green ", "Yellow ","Red ")

So that the results would look like

([0] => Green Apple [1] => Yellow Banane [2] => Red Raspberry) 

I need something to be scalable (2 to 6 keys, always the same between arrays)

What I tried and results

  • array_combine($array2,$array1)

    Result: Array ( [Green ] => Apple [Yellow ] => Banana [Red ] => Raspberry )

  • array_merge($array2,$array1)
    Result: Array ( [0] => Green [1] => Yellow [2] => Red [3] => Apple [4] => Banana [5] => Raspberry )

  • array_merge_recursive($array2,$array1)
    Result: Array ( [0] => Green [1] => Yellow [2] => Red [3] => Apple [4] => Banana [5] => Raspberry )


回答1:


You actually should loop through arrays to combine them.

$combinedArray = array();
foreach ( $array1 as $key=>$value ) {
    $combinedArray[$key] = $array2[$key] . ' ' . $array1[$key];
}



回答2:


Why not simply loop through each array.

$array1 = array("Apple", "Banana","Raspberry");
$array2 = array("Green ", "Yellow ","Red ")

$array3 = arrayCombine($array1, $array2);

function arrayCombine($array1, $array2) {
  $array_out = array();

  foreach ($array1 as $key => $value)
    $array_out[] = $value . ' ' . $array2[$key];

  return $array_out;
}


来源:https://stackoverflow.com/questions/14179552/php-merge-values-of-numeric-arrays-in-corresponding-keys

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!