array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'de', ), 'this' => array ( 0 => 'ds-map.merge.php', 1 => 'Ds\\Map::merge', 2 => 'Returns the result of adding all given associations', ), 'up' => array ( 0 => 'class.ds-map.php', 1 => 'Ds\\Map', ), 'prev' => array ( 0 => 'ds-map.map.php', 1 => 'Ds\\Map::map', ), 'next' => array ( 0 => 'ds-map.pairs.php', 1 => 'Ds\\Map::pairs', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/ds/ds/map/merge.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

Ds\Map::merge

(PECL ds >= 1.0.0)

Ds\Map::mergeReturns the result of adding all given associations

Beschreibung

public Ds\Map::merge(mixed $values): Ds\Map

Returns the result of associating all keys of a given traversable object or Array with their corresponding values, combined with the current instance.

Hinweis:

Values of the current instance will be overwritten by those provided where keys are equal.

Parameter-Liste

values

A traversable object or an Array.

Rückgabewerte

The result of associating all keys of a given traversable object or Array with their corresponding values, combined with the current instance.

Hinweis:

The current instance won't be affected.

Beispiele

Beispiel #1 Ds\Map::merge() example

<?php
$map
= new \Ds\Map(["a" => 1, "b" => 2, "c" => 3]);

print_r($map->merge(["a" => 10, "e" => 50]));
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

Ds\Map Object
(
    [0] => Ds\Pair Object
        (
            [key] => a
            [value] => 10
        )

    [1] => Ds\Pair Object
        (
            [key] => b
            [value] => 2
        )

    [2] => Ds\Pair Object
        (
            [key] => c
            [value] => 3
        )

    [3] => Ds\Pair Object
        (
            [key] => e
            [value] => 50
        )

)