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


PHP SplFixedArray current()用法及代碼示例


SplFixedArray::current()函數是PHP中的內置函數,用於獲取數組的當前條目。

用法:

mixed SplFixedArray::current()

參數:該函數不接受任何參數。


返回值:此函數返回數組的當前條目。

以下示例程序旨在說明PHP中的SplFixedArray::current()函數:

示例1:

<?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; 
  
$gfg->next(); 
echo $gfg->current(). "\n"; 
$gfg->rewind(); 
echo $gfg->current(). "\n"; 
?>
輸出:
5
1

示例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 its values 
while( $gfg->valid() ) { 
    echo $gfg->current() . "\n"; 
    $gfg->next(); 
} 
?>
輸出:
1
5
1
11
15
17

參考: https://www.php.net/manual/en/splfixedarray.current.php



相關用法


注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | SplFixedArray current() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。