码迷,mamicode.com
首页 > Web开发 > 详细

PHP的for循环

时间:2020-03-11 10:52:29      阅读:57      评论:0      收藏:0      [点我收藏+]

标签:次数   pre   代码   运行   col   code   The   情况   color   

For循环执行代码块指定的次数,或者当指定的条件为真时循环执行代码块.for循环用于您预先知道脚本需要运行的次数的情况

for(初始值;条件;增量)

要执行的代码;

<html>
<body>
<?php
for ($i=1; $i<=5; $i++)

 {

  echo "The number is " . $i . "<br>";

 }
?>
</body>
</html>
输出:

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

 

PHP的for循环

标签:次数   pre   代码   运行   col   code   The   情况   color   

原文地址:https://www.cnblogs.com/web928943/p/12460533.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!