Home>Article>Backend Development> Implement face recognition login function of WeChat applet through PHP

Implement face recognition login function of WeChat applet through PHP

jacklove
jacklove Original
2018-06-22 15:57:50 3063browse

This article explains to you how to implement the facial recognition login function of WeChat applet based on PHP through example code. Interested friends can follow the editor of Script House to learn together

First of all, let’s confirm our Our personal information photos have been uploaded to Baidu Cloud Face Library

Then we write the face login interface in the background to log in. We need to store the photos obtained by taking photos to the server

public function login(){ // 上传文件路径 $dir = "./Uploads/temp/"; if(!file_exists($dir)){ mkdir($dir,0777,true); } $upload = new \Think\Upload(); $upload->maxSize = 2048000 ;// 设置附件上传大小 $upload->exts = array('jpg', 'gif', 'png', 'jpeg');// 设置附件上传类型 $upload->savepath = ''; $upload->autoSub = false; $upload->rootPath = $dir; // 设置附件上传根目录 // 上传单个文件 $info = $upload->uploadOne($_FILES['file']); if(!$info) {// 上传错误提示错误信息 echo json_encode(array('error'=>true,'msg'=>$upload->getError()),JSON_UNESCAPED_UNICODE); }else{// 上传成功 获取上传文件信息 $file = $dir . $info['savepath'].$info['savename']; $image = base64_encode(file_get_contents($file)); $client = $this->init_face(); $options['liveness_control'] = 'NORMAL'; $options['max_user_num'] = '1'; $ret = $client->search($image,'BASE64','student',$options); // echo json_encode($ret,JSON_UNESCAPED_UNICODE); // exit; if($ret['error_code']==0){ $user = $ret['result']['user_list'][0]; $no = $user['user_id']; $score = $user['score']; if($score>=95){ $data = M('student')->where("no = '{$no}'")->find(); $data['score'] = $score; // $data['name'] = json_decode($data['name'],true); // $data['sex'] = json_decode($data['sex'],true); echo '识别成功' . json_encode($data,JSON_UNESCAPED_UNICODE); }else{ echo '识别失败' . $data['score']; } } } }

Then carry out front-end design

 开关   切换摄像头      

We can also control the front and rear lenses of the camera

devicePosition() { this.setData({ device: !this.data.device, }) console.log("当前相机摄像头为:", this.data.device ? "后置" : "前置"); camera() { let { ctx, type, startRecord } = this.data; }, data: { src: null, },

Call the interface in js

takePhoto() { const ctx = wx.createCameraContext() ctx.takePhoto({ quality: 'high', success: (res) => { this.setData({ src: res.tempImagePath }) console.log(res) wx.uploadFile({ url: '', //仅为示例,非真实的接口地址 filePath: this.data.src, name: 'file', formData: { }, success: function (res) { // var data = res.data // var json = JSON.parse(data) console.log(res) wx.showModal({ title: "提示", content: res.data, showCancel: false, confirmText: "确定" }) } }) } }) },

Swipe your face to log in successfully

Summary

The above is the PHP introduced by the editor to implement facial recognition and facial recognition login in the WeChat applet. I hope it will be helpful to everyone. If you have any questions, please Leave me a message and I will reply to you in time. I would also like to thank everyone for your support of the Script House website!

Articles you may be interested in:

PHP implements the function of preventing repeated submission of forms [based on token verification]

tp framework (thinkPHP) implements the example of locking the account after three incorrect login passwords

PHP implements the example of generating the data dictionary

The above is the detailed content of Implement face recognition login function of WeChat applet through PHP. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn