Copyright © tutorialspoint.com
| array array_merge ( array $array1 [, array $array2 [, array $array3...]] ); |
Merges the elements of one or more arrays together so that the values of one are appended to the end of the previous one.
If the input arrays have the same string keys, then the later value for that key will overwrite the previous one.
| Parameter | Description |
|---|---|
| array1 | Required.Specifies an array. |
| array2 | Optional.Specifies an array. |
| array3 | Optional.Specifies an array. |
It returns the resulting array.
Try out following example:
<?php
$array1=array("a"=>"Horse","b"=>"Cat","c"=>"Dog");
$array2=array("d"=>"Cow","a"=>"Cat","e"=>"elephant");
print_r(array_merge($array1,$array2));
?>
|
This will produce following result:
Array ( [a]=>Cat [b]=>Cat [c]=>Dog [d]=>Cow [e]=>elephant ) |
Copyright © tutorialspoint.com