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
相關用法
- PHP abs()用法及代碼示例
- PHP end()用法及代碼示例
- PHP pos()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP sin( )用法及代碼示例
- PHP key()用法及代碼示例
- PHP each()用法及代碼示例
- PHP pi( )用法及代碼示例
- PHP Ds\Map xor()用法及代碼示例
- PHP Ds\Set xor()用法及代碼示例
- PHP pow( )用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- PHP tan( )用法及代碼示例
- PHP dir()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 PHP | Ds\Map first() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。