• PHP Video Tutorials

PHP - Ds Map putAll() Function



Ds\Map::putAll() function can associate all key-value pairs of traversable object or array.

Syntax

public void Ds\Map::putAll( mixed $pairs )

Ds\Map::putAll() function doesn't return any value.

Example

<?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); 
?> 
php_function_reference.htm
Advertisements