Difference between Array merge and Adding array In PHP

This Is all about difference between array merge and adding array in PHP.



1) Array Merge will add two array With re index the key if in case Indexed array
but adding two array is possible for only associative array and it will keep adding without changing the Key of this array.
See the example below in case-1

2) In case if two associative array having same key, then array merge will merge in a single array, But In case adding Two array it will simple over write the index key and merge it. See the example case-2

3) Adding array not work for non-associative array.
See Example Case-3



All Below Example will work for Index key Should be Numeric.

Case-1:

Output-:

Case 2:-

OutPut:-

 

Case-3:

Output-: