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


PHP Ds\Map first()用法及代碼示例


PHP Ds \ Map類的Ds \ Map::first()函數用於從Map實例獲取第一個鍵值對。

用法:

Ds\Pair public Ds\Map::first ( )

參數:該函數不接受任何參數。


返回值:它返回一對Ds \ Pair類型,這是Map實例中的第一個鍵值對。這就是Map實例前麵的鍵/值對。

以下示例程序旨在說明PHP中的Ds \ Map::first()函數:

程序1:

<?php 
// PHP program to illustrate first() function 
  
$map = new \Ds\Map([1 => "Geeks", 2 => "for",  
                                3 => "Geeks"]); 
  
print_r($map->first()); 
  
?>

輸出:

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

程序2:

<?php 
// PHP program to illustrate first() function 
  
$map = new \Ds\Map(["first" => "Geeks", "second" => "for",  
                                "third" => "Geeks"]); 
  
print_r($map->first()); 
  
?>

輸出:

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

參考:http://php.net/manual/en/ds-map.first.php



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 PHP | Ds\Map first() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。