PHP

How to merge two or more arrays into one array in PHP1 min read

You can use the PHP array_merge() function to merge the elements or values of two or more arrays together into a single array.

The merging is occurring in such a way that the values of one array are appended to the end of the previous array. Let’s check out an example:




PHP Code:

Output:

Leave a Comment