龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > web编程 > php编程 >

循环类型

时间:2014-07-22 14:52来源: 作者: 点击:
分享到:
h3 style=font-weight:normal;Types of loops 循环类型。br / /h3

Types of loops 循环类型。


<?php

$files = array ('index.php', 'reports.php', 'welcome');

echo "This is how foreach works
";

foreach($files as $file){

echo $file."
";

};
echo "


";
echo "This is how for works
";
for($index = 0; $index < count($files); $index++){

//echo "Index = ".$index."
";
echo "File = ".$files[$index]."
";

} Play Angry Birds
echo "


";
echo "This is how while works
";

$index = 0;
while($index<count($files)){


//echo "Index = ".$index."<br />";
echo "File = ".$files[$index]."
";
$index++;

}
?> 
精彩图集

赞助商链接