answersLogoWhite

0

To merge arrays in PHP all you have to do is use the array_merge() function like shown below:

<?php

$array1 = array("Matt", "Michael", "Justin");

$array2 = array("Janice", "Janet", "Kylie");

$array3 = array_merge($array1, $array2);

?>

One thing to remember when merging arrays is you might be creating duplicate results, if you don't want 2 or more of the same result in the array remember to use the function array_unique() to remove the duplicate results from it!

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What is a PHP function that can sort arrays by other arrays?

You cannot sort arrays by other arrays; that wouldn't make sense, anyway.


How do you merge and sort an array using PHP?

To merge and sort an array in PHP you need to use the array_merge() and sort() functions like shown in the example below: &lt;?php $array1 = array(1, 5, 3, 9, 7); $array2 = array(8, 2, 6, 4, 0); // merge the arrays $merge = array_merge($array1, $array2); // 1, 5, 3, 9, 7, 8, 2, 6, 4, 0 // sort the array sort($merge); // 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 ?&gt;


What is the PHP foreach construct used for?

The PHP foreach construct is used to iterate over arrays. This is done in the field of mathematics. It will issue errors when one tries to use it as a variable instead of arrays and objects.


What language supports associative arrays?

AWK, Perl and PHP are three examples.


What is the use of auxiliary array in merge sort?

In merge sort the whole is divided into two sub arrays. (This way of solving problem is called Divide and conquer algorithm) These sub arrays are called auxiliary arrays. First an array A is divided into two auxiliary arrays A1 and A2. Now these auxiliary arrays are further divided until we reach a stage with an auxiliary array of 2 elements. These 2 elements are arranged in incremental order and merged with the previous divided arrays. So we can say that auxiliary array is used to implement the basic principle of merge sort.


What is the importance of foreach loop in php?

The foreach construct simply gives an easy way to iterate over arrays. Foreach works only on arrays (and objects).


How do you get difference between two or more arrays in PHP?

The inherit function `array_dif($arrayOne, $arrayTwo, $arrayThree, ...)` is likely what you're looking for. It compares two or more arrays, and returns an array of values that are unique among the arrays.


What is the Java implementation for finding the median of two sorted arrays efficiently?

One efficient Java implementation for finding the median of two sorted arrays is to merge the arrays into one sorted array and then calculate the median based on the length of the combined array.


What is the most efficient way to find the median of k sorted arrays?

One efficient way to find the median of k sorted arrays is to merge all the arrays into one sorted array and then find the middle element. This method has a time complexity of O(n log k), where n is the total number of elements in all arrays and k is the number of arrays.


How many data types are there in PHP?

The data types are grouped into this categories: Booleans Integers Floating point numbers Strings Arrays Objects


What is the median of two arrays when combined into a single array?

To find the median of two arrays when combined into a single array, first merge the arrays and then calculate the median by finding the middle value if the total number of elements is odd, or by averaging the two middle values if the total number of elements is even.


How are arrays different in languages other than PHP?

There aren't any (at least none that I'm aware of). In PHP arrays are the same as in all other languages: variables that contain several values at different indices.The only difference between PHP and certain other languages is the way a variable is initialised as an array:$example = array(index => value, index2 => value2);Contrary to other languages, this is similar to a function, as opposed to creating an instance of a class. (JavaScript for example: xyz = new Array();)