In-depth understanding of php4 (2) -- revisit the past

Source: Internet
Author: User

So, you can understand the "while" loop-it executes a series of commands until a specific condition is met. However, now let's think about what will happen if the first repetition of the condition meets the condition? For example, in the above repetition, if you enter 2001, this loop will not be executed once. Try it yourself and then you will understand what we mean.

Therefore, if you have to execute at least one repeat, you can choose to use the "do-while" loop provided by PHP. First, let's look at the following example:


Do
{
Do this!
} While (condition)

Let's take a quick example:
<? Php

$ Bingo = 366;

While ($ bingo = 699)
{
Echo "Bingo! ";
Break;
}

?>

In this case, no matter how many times you run the PHP script, you will not get any output because the value of $ bingo is not equal to 699. However, if you run the following version of the script:



<? Php

$ Bingo = 799;

Do
{
Echo "Bingo! ";
Break;
} While ($ bingo = 699 );

?>

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.