php循环语句

1、while循环

当指定的条件为真时循环执行代码块

 

while

语法:

while (condition)

{

  statement;

}

比如:

<?php
$i=1;
while($i<=5)
{
    echo "The number is " . $i . "<br>";
    $i++;
}
?>
hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » php循环语句