gpt4 book ai didi

php - 在 foreach 中,isLastItem() 存在吗?

转载 作者:可可西里 更新时间:2023-11-01 12:22:53 25 4
gpt4 key购买 nike

使用常规的 for 循环,可以将当前索引与最后一个索引进行比较,以判断我是否处于循环的最后一次迭代中。使用foreach时有没有类似的事情?我的意思是这样的。

foreach($array as $item){
//do stuff
//then check if we're in the last iteration of the loop
$last_iteration = islast(); //boolean true/false
}

如果不是,是否至少有一种方法可以知道当前迭代的当前索引,例如 $iteration = 5,因此我可以手动将其与 $array 的长度进行比较?

最佳答案

计数器方法可能是最简单的。

$i = count($array);
foreach($array as $item){
//do stuff
//then check if we're in the last iteration of the loop
$last_iteration = !(--$i); //boolean true/false
}

关于php - 在 foreach 中,isLastItem() 存在吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4943719/

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