78

我遇到了嵌套循环的问题。我有多个帖子,每个帖子都有多个图像。

我想从所有帖子中获得总共 5 张图片。所以我使用嵌套循环来获取图像,并希望在数量达到 5 时打破循环。以下代码将返回图像,但似乎没有打破循环。

foreach($query->posts as $post){
        if ($images = get_children(array(
                    'post_parent' => $post->ID,
                    'post_type' => 'attachment',
                    'post_mime_type' => 'image'))
            ){              
                $i = 0;
                foreach( $images as $image ) {
                    ..
                    //break the loop?
                    if (++$i == 5) break;
                }               
            }
}
4

2 回答 2

181

与 C/C++ 等其他语言不同,在 PHP 中,您可以使用 break 的可选参数,如下所示:

break 2;

在这种情况下,如果您有两个循环:

while(...) {
   while(...) {
      // do
      // something

      break 2; // skip both
   }
}

break 2将跳过两个 while 循环。

文档: http: //php.net/manual/en/control-structures.break.php

这使得跳过嵌套循环比使用goto其他语言更具可读性

于 2012-07-23T09:14:13.573 回答
3

使用 while 循环

<?php 
$count = $i = 0;
while ($count<5 && $query->posts[$i]) {
    $j = 0;
    $post = $query->posts[$i++];
    if ($images = get_children(array(
                    'post_parent' => $post->ID,
                    'post_type' => 'attachment',
                    'post_mime_type' => 'image'))
            ){              
              while ($count < 5 && $images[$j]) { 
                $count++; 
                $image = $images[$j++];
                    ..
                }               
            }
}
?>
于 2012-07-23T10:01:20.910 回答