91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用CI框架怎么實現一個微信網頁授權庫

發布時間:2021-02-05 16:02:19 來源:億速云 閱讀:179 作者:Leah 欄目:開發技術

本篇文章為大家展示了利用CI框架怎么實現一個微信網頁授權庫,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

1. 微信小類庫,網頁授權放置在libraries文件夾

<?php
if ( ! defined('BASEPATH')) exit('No direct script access allowed');
Class Weixin
{
    private $appId;
    private $appSecret;
    function __construct()
    {
      $this->appId = trim('你的appid');
      $this->appSecret = trim('你的appsecret');
    }
    function redirect_url($redirect)
    {
      /*授權頁面*/
      $url = "https://open.weixin.qq.com/connect/oauth3/authorize?appid=$this->appId&redirect_uri=$redirect&response_type=code&scope=snsapi_userinfo&state=STATE#wechat_redirect";
      return $url;
    }
    /* 通過code換取access_token*/
    function access_token($code)
    {
      /*獲取到的code換取access_token和openid*/
      $post_url = "https://api.weixin.qq.com/sns/oauth3/access_token?appid=$this->appId&secret=$this->appSecret&code=$code&grant_type=authorization_code";
             // echo $post_url;exit();
      $return = $this->postdata($post_url);
      // print_r($return);exit();
      $access_token = $return['access_token'];
      $openid = $return['openid'];
      /*獲取微信用戶數據*/
      $get_userinfo = "https://api.weixin.qq.com/sns/userinfo?access_token=$access_token&openid=$openid&lang=zh_CN";
      $userinfo = json_decode(file_get_contents($get_userinfo));
      return $userinfo;
    }
    function eff($access_token,$openid)
    {
      /*檢測access_token是否正確,errcode=0 為正確*/
      $eff_url = "https://api.weixin.qq.com/sns/auth?access_token=$access_token&openid=$openid";
      $get_eff =json_decode(file_get_contents($eff_url));
      return $get_eff;
    }
    //通過curl方式提交code換取access_token數據
    function postdata($url)
    {
       header('Content-Type:text/html;charset=utf-8');
       // echo $url;exit();
      $curl = curl_init();
      curl_setopt($curl, CURLOPT_URL, $url);
      curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
      curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, FALSE);
      curl_setopt($curl, CURLOPT_SSLVERSION, 1);
      // if (!empty($data)){
        // curl_setopt($curl, CURLOPT_POST, 1);
        // curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
      // }
      curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
      $output = curl_exec($curl);
      curl_close($curl);
      // var_dump($output);exit();
      // print_r($output);exit();
      $access = json_decode($output,true);
      return $access;
    }
    /*
      這個位置開始是控制器index()傳入的微信用戶資料處理
    */
      function save_session($data)
      {
        foreach ($data as $key => $value) {
          // $_SESSION['uid'] = $value['uid'];
          // $_SESSION['nickname'] = $value['nickname'];
          // $_SESSION['fullname'] = $value['fullname'];
          // $_SESSION['status'] = $value['status'];
          // $_SESSION['groups'] = $value['groups'];
          $_SESSION[$key] = $value;
        }
        return $_SESSION;
        // print_r($_SESSION);exit();
        // unset($_SESSION[0]);
      }
    function obj_to_arr($data)
    {
      // 進行轉換成數組 使用 obj_to_arr方式
      $data = is_object($data)?get_object_vars($data):$data;
        foreach ($data as $key => $value)
        {
          $arr[$key] = $value;
        }
        return $arr;
    }
}

2. 通過code換access_token獲取用戶信息,controller文件

<?php
if ( ! defined('BASEPATH')) exit('No direct script access allowed');
Class Coupon_index extends CI_Controller
{
    function __construct()
    {
      parent::__construct();
      $this->load->library(array('weixin','session'));
      $this->load->helper('url');
      // $this->load->ldap_mod_del(link_identifier, dn, entry)
      $this->load->model('Coupon_model');
    }
    /**
     *優惠券主程序
     */
    function index()
    {
      $this->load->view('/coupon/index.html');
    }
    function User_exists()
    {
      /*
        檢測改微信用戶是否存在
        $user_arr 獲取的是通過get_code返回的微信用戶信息,此時的信息是通過微信服務器返回的,不能記錄session
        $user std_obj模式,轉換為數組
        $user_exists 扔入model中,檢測數據表中是否存在該用戶
        $redirect 走完流程后,跳轉到首頁
        if語句的作用,是 判斷通過model返回數據表的信息,如果為空則把微信用戶信息錄入到表中,再讀取出來,存進session。
        else 則數據表已經存在該用戶,直接讀取,存進session
        需要注意的是,使用foreach的原因,是二維數組轉一維數組
      */
        $user_arr = $this->Get_code();
        // var_dump($user_arr);exit();
        $user = $this->weixin->obj_to_arr($user_arr);
        // var_dump($user);exit();
        // print_r($user);exit();
        $user_exists = $this->Coupon_model->CheckUser('cou_user',$user);
        // print_r($user_exists);exit();
        // $redirect = 'http://yourwebname.com/coupon/index.php/Coupon/Coupon_index/Coupon_Get/bid/1';
        // $return_url = $this->session->return_url;
        $redirect = 'http://yourwebname.com'.$this->session->return_url;
        // echo $redirect;exit();
        if(empty($user_exists))
        {
           /*
         由于微信獲取到的用戶數據是stdclass對象格式
         所以需要進行轉換成數組 使用 obj_to_arr方式
         */
        //加入自定義的字符進入數組
        unset($user['privilege']);
        $user_exists['nickname']   = $user['nickname'];
        $user_exists['openid']    = $user['openid'];
        $user_exists['language']   = $user['language'];
        $user_exists['city']     = $user['city'];
        $user_exists['country']    = $user['country'];
        $user_exists['province']   = $user['province'];
        $user_exists['headimgurl']  = $user['headimgurl'];
        $user_exists['sex']      = $user['sex'];
        $user_exists['fullname']   = $user['nickname'];
        $user_exists['telphone']   = '';
        $user_exists['login_ip']   =$this->input->ip_address();
        $user_exists['last_ip']    =$this->input->ip_address();
        $user_exists['groups']    = REGISTER_GROUP_ID;
        $user_exists['status']    = 1;
        $user_exists['login_time']  = date("Y-m-d");
         $insert_id = $this->Coupon_model->insert_one('cou_user',$user_exists);
        $user_exists['uid'] = $insert_id;
        }
        else{
         $user_exists = $user_exists[0];
        }
        // $return_url = $this->session->back_url;
        // if(isset($return_url))header('location:'.$return_url);
        /*由Coupon_idex中的Get_Coupon處理*/
        $this->session->set_userdata($user_exists);
        if(isset($this->session->return_url))header('location:'.$this->session->return_url);
        // print_r($user_exists);exit();
        header('location:'.$redirect);
    }
    function Coupon_start()
    {
      /*進入領取頁面,需要先經過授權*/
      $redirect_url = 'Coupon/Coupon_index/User_exists';
      $redirect = urlencode('http://yourwebname.com/coupon/index.php/'.$redirect_url);
      // $redirect = urlencode('http://yourwebname.com/coupon/index.php/Coupon/Coupon_index/Get_code');
      $return = $this->weixin->redirect_url($redirect);
       header('location:'.$return);
    }
    public function Get_code()
    {
      if(isset($_GET['code']))
      {
        $code = $_GET['code'];
        // echo $code;exit();
        $user_arr = $this->weixin->access_token($code);
        //跳轉到用戶檢測中check_exists()去
        // echo $user_arr;exit();
        // var_dump($user_arr);
        return $user_arr;
      }else{
        //否則檢測cookie中是否存在該用戶,如果有,則return回首頁
          echo 'error';
      }
     }
     public function Coupon_Get()
     {
      /*獲取商家bid,讀取相關信息*/
      // $b_name = $this->uri->segment(4, 0);
      $nickname = $this->session->nickname;
      $openid = $this->session->openid;
      $status = $this->session->status;
      $_SESSION['return_url'] = $_SERVER['REQUEST_URI'];
      // $this->session->set_userdata($return_url);
      // echo $this->session->return_url;exit();
      if(empty($nickname))header('location:'.'http://yourwebname.com/coupon/index.php/Coupon/Coupon_index/Coupon_start');
      $bid = $this->uri->segment(5, 0);
      /*扔進Coupon_model中,讀取bid中的商家信息*/
      $content = $this->Coupon_model->Coupon_Business('cou_business',$bid);
      // print_r($content);
      // echo $bid;
      // echo $b_name;
      $data['bname']   = $content['bname'];
      $data['discount']  = $content['discount'];
      $data['bimg']    = $content['bimg'];
      $data['contents']  = $content['contents'];
      $data['amount']   = $content['amount'];
      $data['nickname']  = $nickname;
      $data['status']   = $status;
      $data['js'] = json_encode(array($content['bname'],$content['discount'],$nickname,$status));
      // echo $data['js'];exit();
      // print_r($data);
      $this->load->view('/coupon/index.html',$data);
      // echo $nickname;
      // echo $status;
    }
}

上述內容就是利用CI框架怎么實現一個微信網頁授權庫,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

广河县| 高陵县| 桃江县| 江城| 蓝山县| 兴安盟| 大港区| 新疆| 河东区| 延长县| 宜昌市| 镇安县| 潮安县| 涟源市| 鹿泉市| 郎溪县| 秀山| 临清市| 桃源县| 浦北县| 岚皋县| 扶绥县| 修文县| 大渡口区| 壤塘县| 玉林市| 虞城县| 韶山市| 尉氏县| 濮阳市| 东乡| 蓬溪县| 义马市| 顺平县| 岚皋县| 石城县| 固安县| 连平县| 珲春市| 汉沽区| 邵武市|