array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'tr', ), 'this' => array ( 0 => 'ds-map.union.php', 1 => 'Ds\\Map::union', 2 => 'Creates a new map using values from the current instance and another map', ), 'up' => array ( 0 => 'class.ds-map.php', 1 => 'Ds\\Map', ), 'prev' => array ( 0 => 'ds-map.toarray.php', 1 => 'Ds\\Map::toArray', ), 'next' => array ( 0 => 'ds-map.values.php', 1 => 'Ds\\Map::values', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/ds/ds/map/union.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PECL ds >= 1.0.0)
Ds\Map::union — Creates a new map using values from the current instance and another map
Creates a new map that contains the pairs of the current instance as well as the
pairs of another map.
A ∪ B = {x: x ∈ A ∨ x ∈ B}
Bilginize:
Values of the current instance will be overwritten by those provided where keys are equal.
mapThe other map, to combine with the current instance.
A new map containing all the pairs of the current instance as well as another map.
Örnek 1 Ds\Map::union() example
<?php
$a = new \Ds\Map(["a" => 1, "b" => 2, "c" => 3]);
$b = new \Ds\Map(["b" => 3, "c" => 4, "d" => 5]);
print_r($a->union($b));
?>Yukarıdaki örnek şuna benzer bir çıktı üretir:
Ds\Map Object
(
[0] => Ds\Pair Object
(
[key] => a
[value] => 1
)
[1] => Ds\Pair Object
(
[key] => b
[value] => 3
)
[2] => Ds\Pair Object
(
[key] => c
[value] => 4
)
[3] => Ds\Pair Object
(
[key] => d
[value] => 5
)
)