• 实例首页
  • 自学教程
  • IT工具箱
xxxxxxxxxx
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>PHP do while 循环 实例 - 自学教程(runoops.com)</title>
6
</head>
7
<body>
8
​
9
<?php
10
$i=1;
11
do
12
{
13
    $i++;
14
    echo "The number is " . $i . "<br>";
15
}
16
while ($i<=5);
17
?>
18
​
19
</body>
20
​
21
</html>

© 2023 自学教程   runoops.com All Rights Reserved. 备案号:闽ICP备19010956号-1