The difference between the PHP function array_merge () and the plus sign operator. We will introduce array_merge in the reference manual as follows: the PHP function array_merge () combines two or more arrays, the value in an array is appended. what we will introduce today isArray_merge is described in the reference manual as follows:
The PHP function array_merge () combines two or more arrays. the values in an array are appended to the values of the previous array. Returns an array of results.
If the input array contains the same string key name, the value after the key name overwrites the previous value. However, if the array contains a number key name, the subsequent values will not overwrite the original values, but will be appended to the back.
The difference between the PHP function array_merge () and the plus sign operator is:
1. when the array KEY name is a numeric KEY, when the two arrays to be merged have a numeric KEY with the same name, using array_merge () will not overwrite the original value, when "+" is used to merge arrays, the first value will be returned as the final result, and the values of the following arrays with the same key name will be discarded (note: instead of overwriting, the value that appears first is retained ). Example:
- $ArrayArray1= Array (1=>'0 ');
- $ArrayArray2= Array (1=>"Data ");
- $Result1= $ Array2 + $ array1;/* The result is the value of $ array2 */
- Print_r ($ result );
- $Result= $ Array1 + $ array2;/* The result is a value of $ array1 */
- Print_r ($ result );
- $Result3=Array_merge($ Array2, $ array1);/* The result is the values of $ array2 and $ array1. The key name is reassigned */
- Print_r ($ result3 );
- $Result4=Array_merge($ Array1, $ array2);/* The result is the values of $ array1 and $ array2. The key name is reassigned */
- Print_r ($ result4 );
Output result:
- Array ( [1] => data )
- Array ( [1] => 0 )
- Array (
- [0] => data
- [1] => 0
- )
- Array
- (
- [0] => 0
- [1] => data
- )
2. when the same array key name is a character, the "+" operator is the same as the key name is a number, but the PHP function array_merge () will overwrite the value of the previous same key name.
Example:
- $ArrayArray1= Array ('asd '=>'0 ');
- $ArrayArray2= Array ('asd '=>"Data ");
- $Result1= $ Array2 + $ array1;/* The result is the value of $ array2 */
- Print_r ($ result );
- $Result= $ Array1 + $ array2;/* The result is a value of $ array1 */
- Print_r ($ result );
- $Result3=Array_merge($ Array2, $ array1);/* The result is $ array1 */
- Print_r ($ result3 );
- $Result4=Array_merge($ Array1, $ array2);/* The result is $ array2 */
- Print_r ($ result4 );
Output result:
- Array ( [asd] => data )
- Array ( [asd] => 0 )
- Array ( [asd] => 0 )
- Array ( [asd] => data )
The above is the difference between the array_merge () and the plus sign operator of the PHP function in actual use.
The description of javasarray_merge in the reference manual is as follows: the PHP function array_merge () combines two or more arrays, and the values in an array are appended...