PHP中Ds \ Set类的Ds \ Set::get()函数是一个内置函数,用于从Set实例获取值。此函数用于获取Set实例中特定索引处的值。
用法:
mixed public Ds\Set::get ( int $index )
参数:该函数接受单个参数$index,该参数代表将从中获取值的Set中的索引位置。
返回值:此函数在Set实例的索引$index处返回当前值。
以下示例程序旨在说明Ds \ Set::get()函数:
程序1:
<?php
// Declare new Set
$set = new \Ds\Set([10, 15, 21]);
// Display the Set element
var_dump($set);
// Display value at index 2
echo "Value at index 2 is:";
print_r($set->get(2));
?>
输出:
object(Ds\Set)#1 (3) { [0]=> int(10) [1]=> int(15) [2]=> int(21) } Value at index 2 is:21
程序2:
<?php
// Declare new Set
$set = new \Ds\Set(["Geeks", "for", "Keegs"]);
// Display the Set element
var_dump($set);
// Display the value at index 0
echo "Value at index 0 is:";
print_r($set->get(0));
?>
输出:
object(Ds\Set)#1 (3) { [0]=> string(5) "Geeks" [1]=> string(3) "for" [2]=> string(5) "Keegs" } Value at index 0 is:Geeks
参考: http://php.net/manual/en/ds-set.get.php
相关用法
- PHP exp()用法及代码示例
- PHP ord()用法及代码示例
- PHP Ds\Map map()用法及代码示例
- PHP Ds\Map last()用法及代码示例
- PHP dir()用法及代码示例
- PHP pos()用法及代码示例
- PHP tan( )用法及代码示例
- PHP min( )用法及代码示例
- PHP key()用法及代码示例
- PHP each()用法及代码示例
- PHP abs()用法及代码示例
- PHP end()用法及代码示例
- PHP cos( )用法及代码示例
- PHP max( )用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 PHP Ds\Set get() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。