我试图为我项目中的每个学生生成一个examKey。我想连接$ coursecode&数据库中每个student_no的3个随机字符产生一个密钥(例如CMSC11-asd1212345)。我在列中有六个student_no,但是附加的唯一student_no是最后一行中的一个。 这是我的控制器:
public function addExamKey($exam_no){
$this->load->model('exam_model');
$coursecode = $this->exam_model->loadCourseCode($exam_no);
$stdNo = $this->loadStudentNo($exam_no);
//var_dump($stdNo);
$characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
$charactersLength = strlen($characters);
$randChar = '';
for ($i = 0; $i < 3; $i++) {
$randChar .= $characters[rand(0, $charactersLength - 1)];
}
foreach ($stdNo as $row) {
$examKey = $coursecode.'-'.$randChar.$row->student_no;
}
$this->exam_model->insertExamKey($examKey,$exam_no);
}
public function loadExamKey($examNo){
$data = $this->addExamKey($examNo);
$this->load->view('exam_key', $data);
}
这是我的模特:
public function getStudentNo($examNo){
$this->db->select("student.student_no");
$this->db->from("student");
$this->db->join("subject", 'subject.classCode = student.classCode');
$this->db->join("exam", 'exam.course_id = subject.course_id');
$this->db->where("exam.exam_no", "$examNo");
$query = $this->db->get();
$result = $query->result();
if($query->num_rows() > 0){
return $result;
}
else{
return false;
}
}
那么如何将$ coursecode和3个随机字符连接到每个student_no?
我尝试使用var_dump()
查看我的查询是否返回所有student_no,并且它完全返回了所有内容。