La función Ds \ Map :: copy () puede devolver la copia superficial de un mapa.
Sintaxis
public Ds\Map Ds\Map::copy( void )
La función Ds \ Map :: copy () no tiene ningún parámetro.
Ejemplo 1
<?php
$map = new \Ds\Map(["first" => "Tutorials", "second" => "Point", "third" => "India"]);
print_r($map->copy());
?>
Ejemplo 2
<?php
$map = new \Ds\Map([1 => "Tutorials", 2 => "Point", 3 => "India"]);
print_r($map->copy());
?>