PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

Ds\Map::merge - Returns the result of adding all given associations. | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

Ds\Map::merge

(PECL ds >= 1.0.0)

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

説明

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

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

注意:

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

パラメータ

values

A traversable object or an array.

返り値

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

注意:

The current instance won't be affected.

例1 Ds\Map::merge() example

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

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

上の例の出力は、 たとえば以下のようになります。

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
        )

)

忘却曲線を使ってこの知識を確実に記憶に残す

フォーラムで「Ds\Map::merge - Returns the result of adding all given associations.」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | Ds\Map::merge - Returns the result of adding all given associations.」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: