在两次迭代后打破foreach循环

时间:2011-11-09 02:07:41

标签: php foreach

如何在两次迭代后打破foreach循环,如下所示:

foreach($posttags as $tags){     
  $tag1 = $tags->slug;  
} --- this is the first iteration, stored in the variable $tag1

foreach($posttags as $tags){     
  $tag2 = $tags->slug;  
} ---- this is the second iteration, stored in the variable $tag2

brake; --- brake the foreach loop

有什么想法吗?

1 个答案:

答案 0 :(得分:2)

最明显的答案是,如果您不想遍历每个项目,请不要使用foreach循环。使用其他一些循环结构,或者手动抓取第一个和第二个项目,如果那是你真正想要的。