我有一个数组:
$stu_result( [exam_type] => 1 [subject_id] => 5 [converted_mark] =>5.00[student_id] => 186 [sub_name] => maths)
它的长度是15。
我想匹配考试类型,并将sub\u名称和转换后的分数存储在一个空白数组中。我试过这个代码:
这是我迄今为止尝试的代码
$result_exam1 = array();
foreach($stu_result as $result_temp){
if($result_temp['exam_type'] == 1){
$result_exam1['converted_mark'] = $result_temp['converted_mark'];
$result_exam1['sub_name'] = $result_temp['sub_name'];
}
}
2条答案
按热度按时间flmtquvp1#
希望这能帮助您:
注:
$stu_result
应该是循环使用的多维数组key value
foreach循环的特性可以获得如下所有数据:kzipqqlq2#
我为了$stu\的结果刷新了整个数组。这就是你要找的吗?