The Ds\Map::merge() function is an inbuilt function in PHP which is used to return the result of adding all given associations.
Syntax:
Ds\Map public Ds\Map::merge( $values )
Parameter: This function accepts single parameter $values which holds the traversable object or an array.
Return value: This function returns the associating all keys of a given traversable object or array with their corresponding values, combined with the current instance.
Below programs illustrate the Ds\Map::merge() function in PHP:
Program 1:
<?php
$map = new \Ds\Map([ "a" => 12,
"b" => 15, "c" => 18, "d" => 20]);
print_r( $map ->merge([ "a" => 1, "c" => 2, "f" => 3]));
print_r( $map )
?>
|
Output:
Ds\Map Object
(
[0] => Ds\Pair Object
(
[key] => a
[value] => 1
)
[1] => Ds\Pair Object
(
[key] => b
[value] => 15
)
[2] => Ds\Pair Object
(
[key] => c
[value] => 2
)
[3] => Ds\Pair Object
(
[key] => d
[value] => 20
)
[4] => Ds\Pair Object
(
[key] => f
[value] => 3
)
)
Ds\Map Object
(
[0] => Ds\Pair Object
(
[key] => a
[value] => 12
)
[1] => Ds\Pair Object
(
[key] => b
[value] => 15
)
[2] => Ds\Pair Object
(
[key] => c
[value] => 18
)
[3] => Ds\Pair Object
(
[key] => d
[value] => 20
)
)
Program 2:
<?php
$map = new \Ds\Map([ "1" => "Geeks" ,
"2" => "for" , "3" => "Geeks" ]);
print_r( $map ->merge([ "a" => "Computer" ,
"b" => "Science" , "c" => "Portal" ]));
?>
|
Output:
Ds\Map Object
(
[0] => Ds\Pair Object
(
[key] => 1
[value] => Geeks
)
[1] => Ds\Pair Object
(
[key] => 2
[value] => for
)
[2] => Ds\Pair Object
(
[key] => 3
[value] => Geeks
)
[3] => Ds\Pair Object
(
[key] => a
[value] => Computer
)
[4] => Ds\Pair Object
(
[key] => b
[value] => Science
)
[5] => Ds\Pair Object
(
[key] => c
[value] => Portal
)
)
Reference: https://www.php.net/manual/en/ds-map.merge.php
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
21 Aug, 2019
Like Article
Save Article