gpt4 book ai didi

php - 在 foreach 循环中使用 next

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:05:42 25 4
gpt4 key购买 nike

我正在使用 foreach 遍历数组。

在特定情况下,我需要在迭代到达那个(如预测)元素之前知道下一个元素的值。为此,我计划使用函数 next() .

在文档中我刚刚注意到 next() 向前推进了内部数组指针。

next() behaves like current(), with one difference. It advances the internal array pointer one place forward before returning the element value. That means it returns the next array value and advances the internal array pointer by one.

如果是这样会影响我的foreach循环吗?

最佳答案

它不会影响你的循环如果你这样使用它

<?php

$lists = range('a', 'f');

foreach($lists as &$value) {
$next = current($lists);
echo 'value: ' . $value . "\n" . 'next: ' . $next . "\n\n";
}

输出

value: a next: b

value: b next: c

value: c next: d

value: d next: e

value: e next: f

value: f next:

关于php - 在 foreach 循环中使用 next,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17962702/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com