当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP SplFixedArray offsetGet()用法及代码示例


SplFixedArray::offsetGet()函数是PHP中的一个内置函数,用于获取数组中指定索引的偏移量。

用法:

mixed SplFixedArray::offsetExists( $index )

参数:该函数接受单个参数$index,该参数指定请求的偏移量。


返回值:此函数返回数组的偏移量。

以下示例程序旨在说明PHP中的SplFixedArray::offsetExists()函数:

程序1:

<?php 
  
// Create a fixed size array 
$gfg = new SplFixedArray(6); 
  
$gfg[0] = 1; 
$gfg[1] = 5; 
$gfg[2] = 10; 
  
// Check whether index exist or not 
var_dump($gfg->offsetGet(2)); 
?>
输出:
int(10)

程序2:

<?php 
  
// Create some fixed size array 
$gfg = new SplFixedArray(6); 
  
$gfg[0] = 1; 
$gfg[1] = 5; 
$gfg[2] = 1; 
$gfg[3] = 11; 
$gfg[4] = 15; 
$gfg[5] = 17; 
  
$i = 0; 
  
while($i < 6) { 
      
    // Print the offset of the current index 
    var_dump($gfg->offsetGet($i));  
  
    $i++; 
} 
?>
输出:
int(1)
int(5)
int(1)
int(11)
int(15)
int(17)

参考: https://www.php.net/manual/en/splfixedarray.offsetget.php



相关用法


注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 PHP | SplFixedArray offsetGet() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。