📜  PHP | Ds\Map last()函数

📅  最后修改于: 2022-05-13 01:57:40.118000             🧑  作者: Mango

PHP | Ds\Map last()函数

PHP的Ds\Map::last()函数用于从 Map 对象中查找并获取最后一个键值对。

如果地图为空,则此函数将引发异常。

语法

Ds\Pair public Ds\Map::last ( void )

ParameterDs\Pair :它不接受任何参数。

返回值:该函数返回 Map 对象的最后一个键值对。如果 Map 对象为空,则此函数会引发UnderflowException



下面的程序说明了PHP的Ds\Map::last()函数:

方案一:

 "Geeks", 
            "2" => "for", "3" => "Geeks"]);
  
// Print last key-value pair
print_r($map->last());
  
?>

输出:

Ds\Pair Object
(
    [key] => 3
    [value] => Geeks
)

方案二:

 "10", 
            "2" => "20", "3" => 30]);
  
// Print last key-value pair
print_r($map->last());
  
?>

输出:

Ds\Pair Object
(
    [key] => 3
    [value] => 30
)

参考文献:http:// PHP.NET /手动/ EN / DS-map.last。 PHP