当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Ds\Map last()用法及代码示例


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

如果映射为空,则此函数将引发异常。

用法


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

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

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

以下示例程序旨在说明PHP中的Ds \ Map::last()函数:

程序1:

<?php 
// PHP program to illustrate the last() 
// function of Ds\map 
  
// Creating a Map 
$map = new \Ds\Map(["1" => "Geeks",  
            "2" => "for", "3" => "Geeks"]); 
  
// Print last key-value pair 
print_r($map->last()); 
  
?>

输出:

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

程序2:

<?php 
// PHP program to illustrate the last() 
// function of Ds\map 
  
// Creating a Map 
$map = new \Ds\Map(["1" => "10",  
            "2" => "20", "3" => 30]); 
  
// Print last key-value pair 
print_r($map->last()); 
  
?>

输出:

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

参考:http://php.net/manual/en/ds-map.last.php



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 PHP | Ds\Map last() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。