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


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


SplFixedArray::next()函数是PHP中的内置函数,用于将数组元素移动到数组的下一个条目。

用法:

void SplFixedArray::next()

参数:该函数不接受任何参数。


返回值:该函数不返回任何值。

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

示例1:

<?php 
  
// Create a fixed size array 
$gfg = new SplFixedArray(6); 
  
$gfg[0] = 1; 
$gfg[1] = 5; 
$gfg[2] = 10; 
  
// Move to next index 
$gfg->next(); 
$gfg->next(); 
  
// Print the value of current index 
echo $gfg->current() . "\n"; 
?>
输出:
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; 
  
// Iterate array and print values 
while($gfg->valid()) { 
      
    // Print current value of index of the array 
    echo $gfg->current(). "\n"; 
      
    // Move next each time of iteration 
    $gfg->next(); 
} 
?>
输出:
1
5
1
11
15
17

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



相关用法


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