This article mainly introduces the implementation method of PHP WeChat PC QR code login, which has certain reference value. Interested friends can refer to it
1. Ideas:
The key to the idea is how to interact with the WeChat side. After all, currently WeChat login can only be done through the WeChat side.
But WeChat has a special method for generating custom QR codes, which allows us to display the QR code on the PC, and the value of the QR code can be what we define . In addition, there is a scan event in the WeChat development documentation, which can detect the user using WeChat to scan the QR code and obtain the value. In fact, the key to the problem lies in this value. This value is regarded as a communication ID between China Unicom PC and WeChat.
2. Specific implementation process (The following code uses the TP5 framework, and a major premise is that there is a public account of the service account)
1. Generate the QR code on PC:
The code is as follows:
Controller:
namespace app\home\controller; class Recognition extends Base{ public function seeLoginQrcode(){ $qrcode_return = model('Recognition')->getLoginQrcode(); if($qrcode_return['error_code']){ return $this->returnJson("获取失败!",0); }else{ $data=array( 'url'=>$qrcode_return['ticket'], 'qrcode_id'=>$qrcode_return['id'], ); return $this->returnJson("获取成功!",1,$data); } } }
model:
##
namespace app\common\model; use think\Model; class Recognition extends Model{ protected $autoWriteTimestamp = false; //生成登录用的临时二维码 public function getLoginQrcode(){ $appid = config('THINK_SDK_WEIXIN.APP_KEY'); $appsecret = config('THINK_SDK_WEIXIN.APP_SECRET'); if(empty($appid) || empty($appsecret)){ return(array('error_code'=>true,'msg'=>'请联系管理员配置【AppId】【 AppSecret】')); } $database_login_qrcode = model('LoginQrcode'); $database_login_qrcode->where(array('add_time'=>array('lt',($_SERVER['REQUEST_TIME']-604800))))->delete(); $data_login_qrcode['add_time'] = $_SERVER['REQUEST_TIME']; $database_login_qrcode->save($data_login_qrcode); $qrcode_id = $database_login_qrcode->getLastInsID(); if(empty($qrcode_id)){ return(array('error_code'=>true,'msg'=>'获取二维码错误!无法写入数据到数据库。请重试。')); } import('Net.Http'); $http = new \Http(); //微信授权获得access_token $access_token_array = model('AccessTokenExpires')->getAccessToken(); if ($access_token_array['errcode']) { return(array('error_code'=>true,'msg'=>'获取access_token发生错误:错误代码' . $access_token_array['errcode'] .',微信返回错误信息:' . $access_token_array['errmsg'])); } $access_token = $access_token_array['access_token']; $qrcode_url='https://api.weixin.qq.com/cgi-bin/qrcode/create?access_token='.$access_token; $post_data['expire_seconds'] = 604800; $post_data['action_name'] = 'QR_SCENE'; $post_data['action_info']['scene']['scene_id'] = $qrcode_id; $json = $http->curlPost($qrcode_url,json_encode($post_data)); if (!$json['errcode']){ $condition_login_qrcode['id']=$qrcode_id; $data_login_qrcode['id'] = $qrcode_id; $data_login_qrcode['ticket'] = $json['ticket']; if($database_login_qrcode->isUpdate(true)->save($data_login_qrcode)){ return(array('error_code'=>false,'id'=>$qrcode_id,'ticket'=>'https://mp.weixin.qq.com/cgi-bin/showqrcode?ticket='.urlencode($json['ticket']))); }else{ $database_login_qrcode->where($condition_login_qrcode)->delete(); return(array('error_code'=>true,'msg'=>'获取二维码错误!保存二维码失败。请重试。')); } }else{ $condition_login_qrcode['id'] = $qrcode_id; $database_login_qrcode->where($condition_login_qrcode)->delete(); return(array('error_code'=>true,'msg'=>'发生错误:错误代码 '.$json['errcode'].',微信返回错误信息:'.$json['errmsg'])); } } }You can see the return after success:
Copy code The code is as follows:
return(array('error_code'=>false,'id'=>$qrcode_id,'ticket'= >'https://mp.weixin.qq.com/cgi-bin/showqrcode?ticket='.urlencode($json['ticket'])));There is an id value, In fact, it represents the value of the QR code!namespace app\mobile\controller; class Wechat extends Base{ public function index() { import('Wechat.Wechat'); $wechat = new \Wechat(); $data = $wechat->request(); list($content, $type) = $this->reply($data); if ($content) { $wechat->response($content, $type); } else { exit(); } } public function reply($data) { if ($data['MsgType'] == 'event') { $id = $data['EventKey']; switch (strtoupper($data['Event'])) { case 'SCAN': return $this->scan($id, $data['FromUserName']); case 'CLICK': //回复? return array('click', 'text'); break; case 'SUBSCRIBE': //关注 return array('Welcome', 'text'); break; case 'UNSUBSCRIBE': //取关 return array('BYE-BYE', 'text'); case 'LOCATION': //定位 break; } } else { if ($data['MsgType'] == 'text') { return array("测试成功!",'text'); } if ($data['MsgType'] == 'location') { } if (import('@.ORG.' . $data['MsgType'] . 'MessageReply')) { } } return false; } private function scan($id, $openid = '', $issubscribe = 0) { if ((1000000000 < $id) && $openid) { if ($user = model('Member')->field('id')->where(array('third_id' => $openid))->find()) { $data=array( 'id'=>$id, 'uid'=> $user['id'] ); model('LoginQrcode')->isUpdate()->save($data); return array('登陆成功', 'text'); } $data=array( 'id'=>$id, 'uid'=>-1 ); model('LoginQrcode')->isUpdate(true)->save($data); $return[] = array('点击授权登录', '',config('SITE_LOGO'), config('SITE_URL') . '/mobile/WechatBind/ajaxWebLogin?qrcode_id=' . $id); return array($return, 'news'); } } }The above Scan method has this Judgment, you can see:
if ((1000000000
$id is the corresponding QR code The value is the id we generated before (in fact, in order to distinguish various events in Scan, we deliberately incremented the login_qrcode table where the id is located starting from 1000000000).Then look at the processing behind if:
if ($user = model('Member')->field('id')->where(array('third_id' => $openid))->find()) { $data=array( 'id'=>$id, 'uid'=> $user['id'] ); model('LoginQrcode')->isUpdate()->save($data); return array('登陆成功', 'text'); }If the conditions are met and there is a user with the openid, update the login_qrcode table and change the uid to the user id. (Here is the key, why is the uid of the data corresponding to the id updated to the user id even if the user is logged in). 3. Continue to look at the PC side. The PC segment did not stop requesting after obtaining the QR code in 1, but instead trained a method:
* 微信登录异步请求 * @return \think\response\Json * created by sunnier<xiaoyao_xiao@126.com> */ public function ajaxWechatLogin(){ for ($i = 0; $i < 6; $i++) { $database_login_qrcode = model('LoginQrcode'); $condition_login_qrcode['id'] = input('get.qrcode_id'); if(empty($condition_login_qrcode['id'])){ return $this->returnJson('未获取到qrcode_id!',0); } $now_qrcode = $database_login_qrcode->field('`uid`')->where($condition_login_qrcode)->find(); if (!empty($now_qrcode['uid'])) { if ($now_qrcode['uid'] == -1) { $data_login_qrcode['uid'] = 0; $database_login_qrcode->where($condition_login_qrcode)->isUpdate(true)->save($data_login_qrcode); return $this->returnJson('请在微信公众号点击授权登录!',0); } $database_login_qrcode->where($condition_login_qrcode)->delete(); $result = model('Member')->autologin('id', $now_qrcode['uid']); if (empty($result['error_code'])) { return $this->returnJson('登录成功!',1,$result['user']); } else if ($result['error_code'] == 1001) { return $this->returnJson('没有查找到用户,请重新扫描二维码!',0); } else if ($result['error_code']) { return $this->returnJson('登陆失败!',0); } } if ($i == 5) { return $this->returnJson('登陆失败',0); } sleep(3); } }You can see that the above method obtains the qrcode_id, which is the id returned in 1, and the other return is the QR code.
The rotation training process is to use this ID to continuously check the status of the login_qrcode table. If the uid exists, it proves that the login is successful! You can use the uid to log in automatically.
Related recommendations:
PHP generationWeChat QR codeExample
##WeChat QR codeJS code analysis during login
微信QR code Specific implementation of the tile scrolling effect
##
The above is the detailed content of How to implement WeChat PC QR code login using PHP. For more information, please follow other related articles on the PHP Chinese website!

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Dreamweaver Mac version
Visual web development tools

Notepad++7.3.1
Easy-to-use and free code editor

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
