Php continue and break process control language usage

Source: Internet
Author: User

Continue
Continue is used in the loop structure to skip the remaining code in this loop and start executing the next loop.

Note: in the php Tutorial, the switch statement is considered as a loop structure for the purpose of continue.

Continue accepts an optional numeric parameter to decide to skip multiple cycles to the end of the loop.

 

<? Php
While (list ($ key, $ value) = each ($ arr )){
If ($ key = "zhoz") {// if the queried object value is zhoz, this record will not be displayed.
Continue;
}
Do_something ($ value );
}
// Example 2
Foreach ($ list as $ temp ){
If ($ temp-> value = "zhoz "){
Continue; // if the queried object value is zhoz, this record will not be displayed.
}
Do_list; // records in the array are displayed here.
}
?>

Break
Break ends the execution of the current for, foreach, while, do... while or switch structure.

The break can accept an optional numeric parameter to determine the number of loops to jump out.

<? Php
$ Arr = array ('one', 'two', 'Three ', 'Four', 'stop', 'five ');
While (list (, $ val) = each ($ arr )){
If ($ val = 'stop '){
Break;/* you coshould also write 'break 1; 'here .*/
   }
Echo "$ val <br> n ";
}

/* Using the optional argument .*/

$ I = 0;
While (++ $ I ){
Switch ($ I ){
Case 5:
Echo "at 5 <br> n ";
Break 1;/* exit only the switch .*/
Case 10:
Echo "at 10; quitting <br> n ";
Break 2;/* exit the switch and the while .*/
Default:
Break;
   }
}
?>

Instance 2

 

<? Php
$ I = 0;
While ($ I <7 ){
If ($ arr [$ I] = "stop "){
Break;
}
$ I ++;
}
?>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.