现在有这样一个问题。。
题库里有50道题,每个用户过来都会随机抽取十道题来回答,系统会将每个用户所答题目ID和相应答案用,号拼接成字符串,存在一个表里,答案没有对错,最后只想从这些数组中取出答题相似度最高的。。
应该怎么做
array_intersect_assoc带索引检查计算数组的交集
$sub_sql = 'select * from f_subject';
$sub_quy = $db->select($sub_sql);
$other_array = array(); #所有用户题目ID和答案数组
$like_user = array();
for($a=0;$a<count($sub_quy);$a++){
if($sub_quy[$a]['id'] != $quy[0]['id']){
$other_array = array('name'=>$sub_quy[$a]['name']);
$subject_array_a = explode(',',substr($sub_quy[$a]['subject'],0,strlen($sub_quy[$a]['subject'])-1));
$answer_array = explode(',',substr($sub_quy[$a]['answer'],0,strlen($sub_quy[$a]['answer'])-1));
for($o=0;$o<count($subject_array_a);$o++){
$other_array += array($subject_array_a[$o]=>$answer_array[$o]);
}
// echo '<pre>';
#print_r($other_array);
$inter_array = array_intersect_assoc($other_array,$mage_array);
$count_inter = count($inter_array);
if($count_inter >= 3){
$like_user += array($other_array['name']=>$count_inter);
}
}
// echo $count_inter;
// echo '</pre>';
}
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。