Join Arrays – Only adding unique indexes / keys
//Only unique index positions/keys from $MyArray2 will be added, if there is an index/key clash then $MyArray1 value takes precidence
$MyArray3 = $MyArray1 + $MyArray2;
Merge Arrays
$MyArray3[] = @array_merge($MyArray1, $MyArray2);
