码迷,mamicode.com
首页 > Web开发 > 详细

PHP学习笔记十一【数组】

时间:2014-08-28 00:49:48      阅读:341      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   color   os   io   for   ar   

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" 
"http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
 <meta charset="utf-8" /> 
</head> 
 <body>
   <h1>请输入五个成绩,用空格隔开</h1>
   <form action="11array1.php" method="post">
      <input type="text" name="grade">
      <input type="submit" value="开始统计">
   </form>
 </body>
</html>

<?php

error_reporting(E_ALL ^ E_NOTICE);//关闭当前页面的notice错误的显示
//接收用户提交的学生的成绩
$grade=@$_REQUEST["grade"];  //@符号也是一个运算符表示,如果当前函数出现错误,只要不是致命的就不显示错误
// echo $grade;
//拆分请求的数据
  $grade=explode(" ",$grade);
 $allGrades=0;
//遍历
 foreach($grade as $k=>$val)
 {
      $allGrades+=$val;
 }
 echo "平均值=".$allGrades/count($grade);
?>

 

PHP学习笔记十一【数组】

标签:des   style   blog   http   color   os   io   for   ar   

原文地址:http://www.cnblogs.com/sumg/p/3940627.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!