foreach($students as $r=>$v);
//使用循环结构遍历数组,获取学号和姓名
{ echo $r;
echo $v;//输出(打印)姓名
echo "<br />";
}
?>
foreach($students as $r=>$v);这里的分号删除