A função Ds \ Map :: last () pode retornar o último par de um mapa.
Sintaxe
public Ds\Pair Ds\Map::last( void )
A função Ds \ Map :: last () não possui parâmetros.
A função Ds \ Map :: last () pode retornar o último par de um mapa. Esta função pode lançar UnderflowException se estiver vazio.
Exemplo 1
<?php
$map = new \Ds\Map(["1" => "10", "2" => "20", "3" => "30"]);
print_r($map->last());
?>
Exemplo 2
<?php
$map = new \Ds\Map(["1" => "Tutorials", "2" => "Point", "3" => "India"]);
print_r($map->last());
?>