Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a loop that is doing some error checking in my PHP code. Originally it looked something like this...

foreach($results as $result) {
    if (!$condition) {
        $halt = true;
        ErrorHandler::addErrorToStack('Unexpected result.');
    }

    doSomething();
 }

if (!$halt) {
    // do what I want cos I know there was no error
}

This works all well and good, but it is still looping through despite after one error it needn't. Is there a way to escape the loop?

share|improve this question

5 Answers

up vote 40 down vote accepted

You are looking for the break statement.

$arr = array('one', 'two', 'three', 'four', 'stop', 'five');
while (list(, $val) = each($arr)) {
    if ($val == 'stop') {
        break;    /* You could also write 'break 1;' here. */
    }
    echo "$val<br />\n";
}
share|improve this answer
2  
make no sense use list for that, you are just adding overhead, instead that use a foreach – Gabriel Sosa Feb 26 '09 at 2:49
6  
@Gabriel, it answers the question, the code sample is exactly that, a sample. You may just as well complain about the non-descriptive "$arr" array name. – paxdiablo Feb 26 '09 at 2:51
2  
@Gabriel: I am posting code directly referenced in the PHP manual, and it accurately shows the usage of the break statement. – TheTXI Feb 26 '09 at 2:52
@Pax, for me thats subjective, each time I put an example I tried to put a real world code. – Gabriel Sosa Feb 26 '09 at 2:53
10  
Aw man.... you totally missed an awesome chance for hammertime! – Arnar Yngvason Dec 8 '10 at 4:30
show 2 more comments

As stated in other posts, you can use the break keyword. One thing that was hinted at but not explained is that the keyword can take a numeric value to tell PHP how many levels to break from.

For example, if you have three foreach loops nested in each other trying to find a piece of information, you could do 'break 3' to get out of all three nested loops. This will work for the 'for', 'foreach', 'while', 'do-while', or 'switch' structures.

$person = "Rasmus Lerdorf";
$found = false;

foreach($organization as $oKey=>$department)
{
   foreach($department as $dKey=>$group)
   {
      foreach($group as $gKey=>$employee)
      {
         if ($employee['fullname'] == $person)
         {
            $found = true;
            break 3;
         }
      } // group
   } // department
} // organization
share|improve this answer
2  
Good point. It is explained pretty clearly in the PHP manual near the top. I don't think this was imperative for this particular question, but this is still very good to know. +1 – TheTXI Feb 26 '09 at 3:05
1  
+1 extra info is always useful. thank you – alex Feb 26 '09 at 3:27
2  
+1 Nice. I learned something today. – Himadri Choudhury Feb 26 '09 at 5:11
+1 Good point! Very Clear explanation... – Mirko Oct 7 '10 at 10:51
1  
+1 I'll use this instead of goto! – 2astalavista Jun 21 '12 at 12:10

break; leaves your loop.

continue; skips any code for the remainder of that loop and goes on to the next loop, so long as the condition is still true.

share|improve this answer
1  
thx for the continue reminder. – mr-euro Jan 27 at 13:00

use break

share|improve this answer
Atleast the other guy's code had some example, what if its not using foreach :P – Sunny R Gupta Apr 3 at 9:22

You must use break.

Here is a live code snippet showing you how - http://init.me/106093/break-statement-in-foreach-loop (right-click to open in new window)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.