--in-depth understanding of php42--revisit the past

Source: Internet
Author: User
So, the "while" loop can be understood this way-it executes a series of commands until a particular condition is met. But now let's think about what will happen if the first repetition of the condition satisfies the condition. For example, in the above repetition, if you enter 2001, the loop will not execute at once. Try it yourself and you'll see what we mean.
So, if you encounter a repetition that must be performed at least once, you can choose to use PHP to provide you with a "do-while" loop. First 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 this PHP script, you will not get any output because the $bingo value 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);
?>

The above describes--in-depth understanding of php42--revisit the past, including the content, I hope to be interested in the PHP tutorial friends helpful.

  • 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.