Home > php教程 > php手册 > for语句的变化

for语句的变化

WBOY
Release: 2016-06-13 10:49:05
Original
1422 people have browsed it

开发软件的过程中,有些时候需要灵活运用for语句的多种形式,现把for语句的其它形式,以示例代码的方式罗列出来!
//第一种变化,把for循环语法中的第一部分提取出来
$i=1;
for(; $i  echo "这是第".$i."次输出!";
}
?>
 
//第二种变化,把for循环语法中的第一部分提取出来,同时把第三部分的增量放到for循环体里
 
$i=1;
for(; $i  echo "这是第".$i."次输出!";
$i++;
}
?>
 
//第三种变化,把for循环语法中全部省略
$i=1;
for(;  ; ) { //第一个分号不能省略
if($i>1)
break;
 echo "这是第".$i."次输出!";
$i++;
}
?>
所有程序在Apache 2.2+PHP5.2.6调通过!
 
穷则变,变则通,通则达,看来在程序里也有这样的哲学!



摘自 chuoyue05的专栏

source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template