这似乎很简单,但我无法弄清楚。我需要为 2 个数组返回一个数组合并,它们不完全相同,一个是全局多维数组。
global $animals;
$array1 = array('dogs' => __('Dogs'), 'cats' => __('Cats')); //localized
$array2 = $animals; //not localized
the var_dump of $array2 is:
array
'ducks' =>
array
'width' => int 350
'height' => int 350
'crop' => boolean true
'cows' =>
array
'width' => int 750
'height' => int 150
'crop' => boolean true
我需要$merge = array_merge($array1, $array2);
像这样返回一个数组。
array('dogs' => __('Dogs'), 'cats' => __('Cats'), 'ducks', 'cows');
但我得到了各种奇怪的结果。