La función Ds \ Map :: reverse () puede invertir el mapa en el lugar.
Sintaxis
public void Ds\Map::reverse( void )
La función Ds \ Map :: reverse () no tiene ningún parámetro.
La función Ds \ Map :: reverse () no devuelve ningún valor.
Ejemplo 1
<?php
$map = new \Ds\Map([1 => 10, 2 => 20, 3 => 30]);
$map->reverse();
print_r($map);
?>
Ejemplo 2
<?php
$map = new \Ds\Map(["first" => "Tutorials", "second" => "Point", "third" => "India"]);
$map->reverse();
print_r($map);
?>