Home >php教程 >php手册 >PHP循环语句基础介绍

PHP循环语句基础介绍

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-06 19:48:18827browse

for 语句 如果您已经确定了代码块的重复执行次数,则可以使用 for 语句。 语法 for (initialization; condition; increment){ code to be executed;} 注释: for 语句有三个参数。第一个参数初始化变量,第二个参数保存条件,第三个参数包含执行循环所需的增

for 语句

如果您已经确定了代码块的重复执行次数,则可以使用 for 语句。

语法

for (initialization; condition; increment)
{
  code to be executed;
}

注释:for 语句有三个参数。第一个参数初始化变量,第二个参数保存条件,第三个参数包含执行循环所需的增量。如果 initialization 或 increment 参数中包括了多个变量,需要用逗号进行分隔。而条件必须计算为 true 或者 false。

例子

下面的例子会把文本 "Hello World!" 显示 5 次:



<?php for ($i=1; $i<=5; $i++)
{
  echo "Hello World!<br />";
}
?>


Statement:
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