gpt4 book ai didi

php - 让foreach跳过迭代

转载 作者:可可西里 更新时间:2023-10-31 22:07:20 26 4
gpt4 key购买 nike

我基本上需要在 foreach 循环中跳过数组的前 10 次迭代。

foreach($aSubs as $aSub){
if($iStart > '0')
//Skip first $iStart iterations. Start at the next one
}

谢谢

最佳答案

启动一个计数器并使用continue 跳过前十个循环:

$counter = 0 ;
foreach($aSubs as $aSub) {
if($counter++ < 10) continue ;
// Loop code
}

关于php - 让foreach跳过迭代,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3847704/

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