當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。