溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

如何在thinkPHP3.2項(xiàng)目中接入微信

發(fā)布時(shí)間:2021-02-05 16:19:59 來(lái)源:億速云 閱讀:206 作者:Leah 欄目:開(kāi)發(fā)技術(shù)

這篇文章將為大家詳細(xì)講解有關(guān)如何在thinkPHP3.2項(xiàng)目中接入微信,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。

1.在con.fig文件里面配置TOKEN,APPID,APPSECRET值

2.控制器WeixinController代碼:

<?php
/**
 * 微信父類(lèi)控制器
 * @author Songle
 *
 */
namespace Weixin\Controller;
use Think\Controller;
class WeixinController extends Controller {
  private $last_time=null;
  private $appid=null;
  private $appsecret=null;
  function __construct(){
    parent::__construct();
    $token=C('TOKEN');
    $this->appid=C('APPID');
    $this->appsecret=C('APPSECRET');
    //獲取微信服務(wù)器GET請(qǐng)求的4個(gè)參數(shù)
    $signature = I('signature');
    $timestamp = I('timestamp');
    $nonce = I('nonce');
    $echostr = I('echostr');
    if (! empty ( $echostr) && ! empty ( $signature ) && ! empty ($nonce )) {
      //定義一個(gè)數(shù)組,存儲(chǔ)其中3個(gè)參數(shù),分別是timestamp,nonce和token
      $tempArr = array($nonce,$timestamp,$token);
      //進(jìn)行排序
      sort($tempArr,SORT_STRING);
      //將數(shù)組轉(zhuǎn)換成字符串
      $tmpStr = implode($tempArr);
      //進(jìn)行sha1加密算法
      $tmpStr = sha1($tmpStr);
      //判斷請(qǐng)求是否來(lái)自微信服務(wù)器,對(duì)比$tmpStr和$signature
      if($tmpStr == $signature)
      {
        echo $echostr;
      }
      exit();
    }
  }
  /**
   * 獲取tooken值
   */
  public function getTooken(){
    $this->last_time = 1448012924;
    $access_token = "填寫(xiě)上一次的token值"; //需要替換成自己的
    if(time() > ($this->last_time + 7200))
    {
      //GET請(qǐng)求的地址
      $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={$this->appid}&secret={$this->appsecret}";
      $access_token_Arr = $this->https_request($url);
      $this->last_time = time();
      return $access_token_Arr['access_token'];
    }
    return $access_token;
  }
  //https請(qǐng)求(支持GET和POST)
  public function https_request($url,$data = null)
  {
    $ch = curl_init();
    curl_setopt($ch,CURLOPT_URL,$url);
    curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
    if(!empty($data))
    {
      curl_setopt($ch,CURLOPT_POST,1); //模擬POST
      curl_setopt($ch,CURLOPT_POSTFIELDS,$data); //POST內(nèi)容
    }
    $outopt = curl_exec($ch);
    curl_close($ch);
    $outopt = json_decode($outopt,true);
    return $outopt;
  }
}

關(guān)于如何在thinkPHP3.2項(xiàng)目中接入微信就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI