Summary of basic PHP knowledge points (2)

Source: Internet
Author: User
PHP basic knowledge point summary (2) 2. PHP process control structure

Branch structure:

Single condition branch structure bidirectional condition branch structure multi-direction condition branch structure nest condition branch structure
If (expression ){
...... If (expression ){
} Else {elseif (expression ){...

......}

} Elseif (expression ){

---------------- If (expression ){

Switch (expression ){...
} Else {
Case value 1 :...

...}

Break ;}

Case value 2:
...
Break;
Case value 3:
...
Break;
Default:
...
}





Loop structure:

While statement: do... while Statement: for statement:
While (expression) {do {for (initialization; conditional expression; increment ){
.........
} While (expression );}

Special process control statement:

Break: interrupt the current loop, that is, terminate the execution of the loop.
Continue: it can only be used inside a loop. the function is to skip this loop and execute the next loop.
Exit: exit the current script regardless of the structure.

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.