功能:自动登录注册功能
描述:php实现微信网页自动登录注册功能
范围:适用于所有php版本
功能实例
$token = $_COOKIE['wechat_token'];
if($token){
//登录状态中需要处理的部分代码逻辑写到这里
}else{
//获取到code码
$code = isset($_REQUEST['code'])?$_REQUEST['code']:'';
if($code){
//自动请求获取code码并获得token和用户信息的步骤代码
$app_id ='公众号id';
$app_secret = '您的公众号密钥';
$api_url = "https://api.weixin.qq.com/sns/oauth2/access_token?appid=$app_id&secret=$app_secret&code={$code}&grant_type=authorization_code";
$wechat_result = file_get_contents($api_url);
$wechat_json= json_decode($wechat_result,true);
if(isset($wechat_json['openid'])){
$openid = $wechat_json['openid'];
$api_url ="https://api.weixin.qq