深入了解php4(2)--重访过去
Release: 2016-06-21 09:04:39
Original
952 people have browsed it
所以呢,可以这样理解"while"循环--它执行一系列的命令,直到一个特定的条件满足。但是,现在我们想一想,如果条件的第一个重复就满足条件了,那将会出现什么情况呢?例如,在上面的重复中,如果你输入2001,该循环将一次也不执行。你自己亲手试试然后你就会明白我们的意思了。
所以,如果你遇到必须至少执行一次的重复时,你可以选择使用PHP给你提供的 "do-while" 循环。首先看看下面的例子:
do
{
do this!
} while (condition)
让我们来一个快速的例子:
$bingo = 366;
while ($bingo == 699)
{
echo "Bingo!";
break;
}
?>
在这种情况中,不管你运行这个PHP脚本多少次,你也不会得到任何输出,因为 $bingo的值不等于699。但是,如果你运行该脚本的如下版本:
$bingo = 799;
do
{
echo "Bingo!";
break;
} while ($bingo == 699);
?>
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31