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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。