PHP - Funzione Ds Map reverse ()
La funzione Ds \ Map :: reverse () può invertire la mappa sul posto.
Sintassi
public void Ds\Map::reverse( void )
La funzione Ds \ Map :: reverse () non ha parametri.
La funzione Ds \ Map :: reverse () non restituisce alcun valore.
Esempio 1
<?php
$map = new \Ds\Map([1 => 10, 2 => 20, 3 => 30]);
$map->reverse();
print_r($map);
?>
Esempio-2
<?php
$map = new \Ds\Map(["first" => "Tutorials", "second" => "Point", "third" => "India"]);
$map->reverse();
print_r($map);
?>