|
Ds\Map::putAllAssociates all key-value pairs of a traversable object or array Description
public void Ds\Map::putAll(mixed
$pairs)
Associates all key-value
Parameters
Return ValuesNo value is returned. ExamplesExample #1 Ds\Map::putAll example The above example will output something similar to:
Ds\Map Object
(
[0] => Ds\Pair Object
(
[key] => a
[value] => 1
)
[1] => Ds\Pair Object
(
[key] => b
[value] => 2
)
[2] => Ds\Pair Object
(
[key] => c
[value] => 3
)
)
|