打破嵌套循环

2022-08-30 08:22:52

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

我想从所有帖子中获得总共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;
                }               
            }
}

答案 1

与其他语言(如 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


答案 2

使用 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++];
                    ..
                }               
            }
}
?>

推荐