Home > PHP > Function > Arrays > array_replace_recursive()

array_replace_recursive()

array_replace_recursive - Replaces elements from passed arrays into the first array recursively

Syntax

array array_replace_recursive (array &$array, array &$array1, array &$array2, array &$...)

Arguments

  • array - The array in which elements are replaced.
  • array1 - The array from which elements will be extracted.
  • array2
  • ...

Description

array_replace_recursive() replaces the values of the first array with the same values from all the following arrays. If a key from the first array exists in the second array, its value will be replaced by the value from the second array. If the key exists in the second array, and not the first, it will be created in the first array. If a key only exists in the first array, it will be left as is. If several arrays are passed for replacement, they will be processed in order, the later array overwriting the previous values.

Version

PHP 5.3.0

Return value

Returns an array, or NULL if an error occurs.