Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Breaking the nested loop [duplicate]

I'm having problem with nested loop. I have multiple number of posts, and each post has multiple number of images.

I want to get total of 5 images from all posts. So I am using nested loop to get the images, and want to break the loop when the number reaches to 5. The following code will return the images, but does not seem to break the loop.

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;                 }                            } } 
like image 977
user1355300 Avatar asked Jul 23 '12 09:07

user1355300


1 Answers

Unlike other languages such as C/C++, in PHP you can use the optional param of break like this:

break 2; 

In this case if you have two loops such that:

while(...) {    while(...) {       // do       // something        break 2; // skip both    } } 

break 2 will skip both while loops.

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

This makes jumping over nested loops more readable than for example using goto of other languages

like image 70
dynamic Avatar answered Sep 20 '22 18:09

dynamic