Correcting teacher:灭绝师太
Correction status:qualified
Teacher's comments:
// js中变量需要先声明才能使用
let fruits = ['apple','banana','orange'];
// 1. js for 遍历数组
for (let index = 0; index < fruits.length; index++) {
alert(fruits[index]);
}
// 2. js forEach
fruits.forEach(fruit=>console.log(fruit));
//php变量不需要声明可以直接使用
$fruits = ['apple','banana','orange'];
// 1. for 遍历数组
for ($i=0; $i < count($fruits) ; $i++) {
echo $fruits[$i].'<br>'; //"."为 php 的连接符
}
// 2. foreach遍历数组
foreach($fruits as $k =>$fruit){
echo $k. '=>' .$fruit.'<br>';
}