PHP | SplFixedArray next()函数
SplFixedArray::next()函数是PHP中的一个内置函数,用于将数组元素移动到数组的下一个条目。
句法:
void SplFixedArray::next()
参数:此函数不接受任何参数。
返回值:此函数不返回任何值。
下面的程序说明了PHP中的SplFixedArray::next()函数:
方案一:
next();
$gfg->next();
// Print the value of current index
echo $gfg->current() . "\n";
?>
输出:
10
方案二:
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