PHP | Ds\Map map()函数
PHPMap 类的Ds\Map::map()函数用于将回调函数应用于 Map 对象。这将返回将回调函数应用于地图上存在的每个值的结果。该函数不会更新原始地图中的值,而是仅返回更新结果而不影响原始值。
句法:
Ds\Map public Ds\Map::map ( callable $callback )
参数:它接受一个回调函数作为参数。此回调函数对地图的每个值应用特定操作。
返回值:该函数返回在不影响原始值的情况下对地图的每个值应用回调函数的结果。
下面的程序说明了PHP的Ds\Map::map()函数:
程序:
"Geeks",
"2" => "for", "3" => "Geeks"]);
// Print the result of map() function
print_r($map->map(function($key, $value){
return strtoupper($value);
}));
// Print the actual map
print_r($map);
?>
输出:
Ds\Map Object
(
[0] => Ds\Pair Object
(
[key] => 1
[value] => GEEKS
)
[1] => Ds\Pair Object
(
[key] => 2
[value] => FOR
)
[2] => Ds\Pair Object
(
[key] => 3
[value] => GEEKS
)
)
Ds\Map Object
(
[0] => Ds\Pair Object
(
[key] => 1
[value] => Geeks
)
[1] => Ds\Pair Object
(
[key] => 2
[value] => for
)
[2] => Ds\Pair Object
(
[key] => 3
[value] => Geeks
)
)
参考文献:http:// PHP.NET /手动/ EN / ds-map.map。 PHP