当前位置:Gxlcms > PHP教程 > php while语句的用法

php while语句的用法

时间:2021-07-01 10:21:17 帮助过:52人阅读

在php中while语句指的是while循环语句,用于重复执行代码块,直到指定的条件不成立,其语法是【while (条件){要执行的代码;}】。

推荐:《PHP视频教程》

php while 循环

while 循环将重复执行代码块,直到指定的条件不成立。

语法

while (条件)
{
    要执行的代码;
}

实例

下面的实例首先设置变量 i 的值为 1 ($i=1;)。

然后,只要 i 小于或者等于 5,while 循环将继续运行。循环每运行一次,i 就会递增 1:

<html>
<body>
<?php
$i=1;
while($i<=5)
{
    echo "The number is " . $i . "<br>";
    $i++;
}
?>
</body>
</html>

输出:

The number is 1
The number is 2
The number is 3
The number is 4
The number is 5

以上就是php while语句的用法的详细内容,更多请关注gxlcms其它相关文章!

人气教程排行