PHP – array_merge_recursive() Function
The PHP array_merge_recursive() function merges one or more arrays into one array. If two or more elements have the same key, a nested array is created.
The PHP array_merge_recursive() function merges one or more arrays into one array. If two or more elements have the same key, a nested array is created.
The PHP array_multisort() function returns a sorted array from one or more arrays.
The PHP array_pad() function inserts a specified number of elements, with a specified value, to an array.
The PHP array_product() function calculates and returns the product of an array.
The PHP array_push() function inserts one or more elements to the end of an array, using numeric keys for the new items even if the array uses string keys.
The PHP array_rand() function returns a random key from the function, or an array of random keys if you specify the return of more than one key.
The PHP array_reduce() function sends the values in an array to a user-defined function, and returns a string.
The PHP array_replace() function replaces the values of the first array with the values from following arrays.
The PHP array_replace_recursive() function replaces the values of the first array with the values from following arrays recursively.
The PHP array_reverse() function returns an array in the reverse order.
The PHP array_search() function searches an array for a value and returns the key.
The PHP array_shift() function removes the first element from an array, and returns the value of the removed element.
The PHP array_splice() function removes selected elements from an array and replaces it with new elements.
The PHP array_sum() function returns the sum of all the values in the array.
The PHP array_udiff() function compares the values of two or more arrays, and returns an array of entries from array1 not in the other array(s).
The PHP array_udiff_assoc() function compares the keys/values of two or more arrays, and returns an array of entries from array1 not in the other array(s).
The PHP array_udiff_uassoc() function compares the keys/values of two or more arrays, and returns the entries from array1 not in the other array(s).
The PHP array_uintersect() function compares the values of two or more arrays, and returns entries from array1 that exist in the other array(s).