📜  PHP Ds\Set get()函数

📅  最后修改于: 2022-05-13 01:57:39.798000             🧑  作者: Mango

PHP Ds\Set get()函数

PHP中 Ds\Set 类的Ds\Set::get()函数是一个内置函数,用于从 Set 实例中获取值。此函数用于获取 Set 实例中特定索引处的值。

句法:

mixed public Ds\Set::get ( int $index )

参数:此函数接受单个参数$index ,该参数表示要从中获取值的 Set 中的索引位置。

返回值:此函数返回 Set 实例中索引 $index 处的当前

下面的程序说明了Ds\Set::get()函数:



方案一:

get(2));
  
?> 
输出:
object(Ds\Set)#1 (3) {
  [0]=>
  int(10)
  [1]=>
  int(15)
  [2]=>
  int(21)
}
Value at index 2 is : 21

方案二:

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 /手动/ EN / DS-set.get。 PHP