📜  PHP | ArrayIterator next()函数

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

PHP | ArrayIterator next()函数

ArrayIterator::next()函数是PHP中的一个内置函数,用于将迭代器移动到下一个条目。

句法:

void ArrayIterator::next( void )

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

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

下面的程序说明了PHP中的 ArrayIterator::next()函数:

方案一:

valid()) {
    echo $arrItr->current();
    $arrItr->next();
}
    
?>
输出:
Geeksfor

方案二:

current() . "\n";
  
// Use next() function to move
// element into next position
$arrItr->next();
  
// Display value of array iterator
echo $arrItr->current() . "\n";
  
// Use next() function to move
// element into next position
$arrItr->next();
  
// Display value of array iterator
echo $arrItr->current();
    
?>
输出:
Geeks
for
Geeks

参考: https://www. PHP.net/manual/en/arrayiterator.next。 PHP