Join Up!
104887 members and counting!

 
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links 
search for in the  
previousforeachcontinuenext
Last updated: Mon, 28 Oct 2002
view the printer friendly version or the printer friendly version with notes or change language to Czech | Finnish | Spanish

break

Break bricht die Ausführung der aktuellen for, foreach while, do..while or switch Anweisungs-Sequenz ab.

Einem break kann optional ein nummerisches Argument angehängt werden, das die Anzahl der abzubrechenden Befehls-Sequenzen enthält.

$arr = array ('eins', 'zwei', 'drei', 'vier', 'stop', 'fünf');
while (list ( , $val) = each ($arr)) {
    if ($val == 'stop') {
        break;  /* Man kann hier auch 'break 1;' schreiben. */
    }
    echo "$val<br>\n";

/* Benutzung des optionalen Argumentes. */
$i = 0;
    while (++$i) {
        switch ($i) {
            case 5:
                echo "Bei 5<br>\n";
                break 1;  /* Beendet nur switch. */
            case 10:
                echo "Bei 10; quitting<br>\n";
                break 2;  /* Beendet switch und while. */
            default:
                break;
    }
}

User Contributed Notes
break
add a note about notes
There are no user contributed notes for this page.
previousforeachcontinuenext
Last updated: Mon, 28 Oct 2002
Copyright © 2001, 2002 The PHP Group
All rights reserved.
This mirror generously provided by: http://phpbuilder.com/
Last updated: Thu Oct 31 18:34:28 2002 EST