(PECL ds >= 1.0.0)
Ds\Map::last — 返回映射的最后一个键值对
此函数没有参数。
映射的最后一个键值对。
UnderflowException 如果为空。
示例 #1 Ds\Map::last() 示例
<?php
$map = new \Ds\Map(["a" => 1, "b" => 2, "c" => 3]);
var_dump($map->last());
?>
上面的示例将输出类似于以下内容
object(Ds\Pair)#2 (2) { ["key"]=> string(1) "c" ["value"]=> int(3) }