A função Ds \ Map :: putAll () pode associar todos os pares de valores-chave do objeto percorrível ou matriz.
Sintaxe
public void Ds\Map::putAll( mixed $pairs )
A função Ds \ Map :: putAll () não retorna nenhum valor.
Exemplo
<?php
$map = new \Ds\Map();
$map->putAll(["x" => "Tutorials", "y" => "Point", "z" => "India"]);
print_r($map);
$map = new \Ds\Map();
$map->putAll(["y" => "Tutorix", "v" => "Hyderabad", "w" => "India"]);
print_r($map);
?>