循环类型
时间:2021-07-01 10:21:17
帮助过:5人阅读
Types of loops 循环类型。
- $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
- //echo "Index = ".$index."
"; - echo "File = ".$files[$index]."
- ";
- $index++;
- }
- ?>
|