So, you can understand the "while" loop--it executes a series of commands until a particular condition is satisfied. 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 repeat that must be performed at least once, you can choose to use PHP to provide you with the "Do-while" loop. First look at the following example:
Todo
{
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 won't 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;
Todo
{
echo "bingo!";
Break
while ($bingo = = 699);
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.