當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。