PHP - Funzione Ds Map copy ()
La funzione Ds \ Map :: copy () può restituire la copia superficiale di una mappa.
Sintassi
public Ds\Map Ds\Map::copy( void )
La funzione Ds \ Map :: copy () non ha parametri.
Esempio 1
<?php
$map = new \Ds\Map(["first" => "Tutorials", "second" => "Point", "third" => "India"]);
print_r($map->copy());
?>
Esempio 2
<?php
$map = new \Ds\Map([1 => "Tutorials", 2 => "Point", 3 => "India"]);
print_r($map->copy());
?>