我需要将一个关联数组合并到另一个关联数组中。我知道 php 的 array_merge 但它返回一个新数组。那不是我想要的。
例如
$ar1 = array('one'=>1, 'two'=>2, 'three'=>3);
$ar2 = array('four'=>4, 'five'=>5);
我想知道是否有一个 php 函数可以用来将 $ar2 合并到 $ar1 中。结果应该是,
$ar1 = array('one'=>1, 'two'=>2, 'three'=>3, 'four'=>4, 'five'=>5);