PHP uses the Array_merge () function to combine two arrays of methods, array_merge arrays
This example describes how PHP merges two arrays by using the Array_merge () function. Share to everyone for your reference. 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
";}
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.
I hope this article is helpful to everyone's PHP programming.
http://www.bkjia.com/PHPjc/969484.html www.bkjia.com true http://www.bkjia.com/PHPjc/969484.html techarticle PHP uses the Array_merge () function to combine two arrays of methods, Array_merge array This article describes the PHP method of merging two arrays through the Array_merge () function. Share for everyone to join us ...