A fairly simple question. What\'s the difference between:
$merged = array_merge($array1, $array2);
and
$merged = $array1 +
array_merge() causes all numeric keys found in the input arrays to be reindexed in the resultant array. The union operator + does not cause a reindex.
array_merge()
+