(PECL ds >= 1.0.2)
Ds\Map::putAll — 关联可遍历对象或数组的所有键值对
注意:
支持 对象 类型的键。如果对象实现了 Ds\Hashable,则相等性将由对象的
equals
函数确定。如果对象未实现 Ds\Hashable,则对象必须是同一个实例的引用才能被认为相等。
不返回任何值。
示例 #1 Ds\Map::putAll() 示例
<?php
$map = new \Ds\Map();
$map->putAll([
"a" => 1,
"b" => 2,
"c" => 3,
]);
print_r($map);
?>
以上示例的输出类似于
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 ) )