This article mainly introduces PHP through the Array_merge () function to merge two arrays of the method, the example analysis of PHP array_merge () function combined array of the use of skills, the need for friends can refer to the following
This example describes how PHP merges two arrays by using the Array_merge () function. The specific analysis is as follows:
PHP merges two arrays with the Array_merge () function, Array_merge () is a PHP function that merges two or more arrays, appends the last array to the previous one, and returns an array of results. It accepts two or more than two arrays and returns an array containing all the elements.
$first = Array ("AA", "BB", "CC"), $second = Array (11,22,33), $third = Array_merge ($first, $second); foreach ($third as $val) {print "$val <br/>";}
The result of the above code execution is as follows:
The output is a array with (' AA ', ' BB ', ' cc ', 11, 22, 33)
Special NOTE: If the input array has the same string key, then the value next to the key will overwrite the previous one. However, if the array contains numeric keys, subsequent values will not overwrite the original values, but will be appended.
Summary : The above is the entire content of this article, I hope to be able to help you learn.