发布网友 发布时间:2022-04-23 09:06
共1个回答
热心网友 时间:2022-04-22 19:56
public function login(){ $dir="./***";//自己定义的文件名 if(!file_exists($dir)){ mkdir($dir,0777,true); } $upload = new \Think\Upload();// 实例化上传类 $upload->maxSize = 3145728 ;// 设置附件上传大小 $upload->exts = array('jpg', 'gif', 'png', 'jpeg');// 设置附件上传类型 $upload->rootPath = $dir; // 设置附件上传根目 $upload->savepath=''; // 上传单个文件 $info = $upload->uploadOne($_FILES['file']); if(!$info) {// 上传错误提示错误信息 return $this->ajaxReturn(array('error'=>true,'msg'=>$upload->getError())); }else{// 上传成功 获取上传文件信息 $file = $dir . $info['savepath'] . $info['savename']; $image = base_encode(file_get_contents($file)); $client = $this->init_face(); $options['liveness_control']='NORMAL'; $options['max_user_num']='1'; $ret = $client->search($image,'BASE',$this->face_group(),$options); if($ret['error_code']==0){ $user = $ret['result']['user_list'][0]; $no = $user['user_id']; $score = $user['score']; if(!empty($no)){ $data = M('student')->field('no,name,sex')->where("no='{$no}'")->find() if($data){ //查到此学号 $data['score']