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

溫馨提示×

溫馨提示×

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

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

PHP微信API接口類的示例分析

發布時間:2021-08-31 14:15:23 來源:億速云 閱讀:129 作者:小新 欄目:開發技術

這篇文章主要介紹PHP微信API接口類的示例分析,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

具體內容如下

<?php
/**
 * wechat php test
 */
 
//define your token
//定義TOKEN秘鑰
define("TOKEN", "weixin");
 
//實例化微信對象
$wechatObj = new wechatCallbackapiTest();
//驗證成功后注釋valid方法
//$wechatObj->valid();
//開啟自動回復功能
$wechatObj->responseMsg();
 
 
//定義類文件
class wechatCallbackapiTest
{
  //實現valid驗證方法:實現對接微信公眾平臺
  public function valid()
  {
    //接受隨機字符串
    $echoStr = $_GET["echostr"];
 
    //valid signature , option
    //進行用戶數字簽名驗證
    if($this->checkSignature()){
      //如果成功,則返回接受到的隨機字符串
      echo $echoStr;
      //退出
      exit;
    }
  }
  //定義自動回復功能
  public function responseMsg()
  {
    //get post data, May be due to the different environments
    //接受用戶端發送過來的xml數據
    $postStr = $GLOBALS["HTTP_RAW_POST_DATA"];
 
    //extract post data
    //判斷xml數據是否為空
    if (!empty($postStr)){
        /* libxml_disable_entity_loader is to prevent XML eXternal Entity Injection,
          the best way is to check the validity of xml by yourself */
        libxml_disable_entity_loader(true);
        //通過simplexml進行xml解析
        $postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA);
        //接受微信的手機端
        $fromUsername = $postObj->FromUserName;
        //微信公眾平臺
        $toUsername = $postObj->ToUserName;
        //接受用戶發送的關鍵詞
        $keyword = trim($postObj->Content);
        //1.接受用戶消息類型
        $msgType = $postObj -> MsgType;
        //時間戳
        $time = time();
        //文本發送模板
        $textTpl = "<xml>
              <ToUserName><![CDATA[%s]]></ToUserName>
              <FromUserName><![CDATA[%s]]></FromUserName>
              <CreateTime>%s</CreateTime>
              <MsgType><![CDATA[%s]]></MsgType>
              <Content><![CDATA[%s]]></Content>
              <FuncFlag>0</FuncFlag>
              </xml>"; 
        //////////////////////////////////////////////////////////////////////////////////
        //如果用戶發送的是文本類型文件,執行以下
        if($msgType == 'text'){
          if(!empty( $keyword ))
          {
            /*這是一個實例
              //如果發送文本信息
              $msgType = "text";
              //回復內容
              if($keyword == "李楠"){
                $contentStr = "叫我干嘛";
              }else{
                $contentStr = "叫我干嘛";
              }
              //格式化xml模板,參數與上面的模板是一一對應的.fromUsername和頭Username是相反的,只寫帶%s的
              $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);
 
              //將xml信息返回給客戶端
              echo $resultStr;
            */
            if($keyword == "?" || $keyword == "?"){
              $msgType = "text";
              $contentStr = "1.特種服務號碼\n2.通訊服務號碼";
              $resultStr = sprintf($textTpl,$fromUsername,$toUsername,$time,$msgType,$contentStr);
              echo $resultStr;
            }elseif($keyword == 1){
              $msgType = "text";
              $contentStr = "1.匪警:110\n2.火警:119\n3.急救:120";
              $resultStr = sprintf($textTpl,$fromUsername,$toUsername,$time,$msgType,$contentStr);
              echo $resultStr;
            }elseif($keyword == 2){
              $msgType = "text";
              $contentStr = "1.中國移動:10086\n2.中國聯通:10010";
              $resultStr = sprintf($textTpl,$fromUsername,$toUsername,$time,$msgType,$contentStr);
              echo $resultStr;
            }
          }else{
            echo "不能不說話";
          }
        }
        ////////////////////////////////////////////////////////////////////////////////////
        //接受圖片信息
        if($msgType == "image"){
            //如果發送文本信息
            $msgType = "text";
            //回復內容
            $contentStr = "你發送的是圖片文件";
            //格式化字符串
            $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);
            //將xml信息返回給客戶端
            echo $resultStr;
        }
        ////////////////////////////////////////////////////////////////////////////////////
        if($msgType == "voice"){
            //如果發送文本信息
            $msgType = "text";
            //回復內容
            $contentStr = "你發送的是語音文件";
            //格式化字符串
            $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);
            //將xml信息返回給客戶端
            echo $resultStr;
        }
        ////////////////////////////////////////////////////////////////////////////////////
        if($msgType == "video"){
            //如果發送文本信息
            $msgType = "text";
            //回復內容
            $contentStr = "你發送的是視頻文件";
            //格式化字符串
            $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);
            //將xml信息返回給客戶端
            echo $resultStr;
        }
        ////////////////////////////////////////////////////////////////////////////////////
        if($msgType == "shortvideo"){
            //如果發送文本信息
            $msgType = "text";
            //回復內容
            $contentStr = "你發送的是小視頻文件";
            //格式化字符串
            $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);
            //將xml信息返回給客戶端
            echo $resultStr;
        }
        ////////////////////////////////////////////////////////////////////////////////////
        if($msgType == "location"){
            //如果發送文本信息
            $msgType = "text";
            //回復內容
            $contentStr = "你發送的是地理位置文件";
            //格式化字符串
            $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);
            //將xml信息返回給客戶端
            echo $resultStr;
        }
        ////////////////////////////////////////////////////////////////////////////////////
        if($msgType == "link"){
            //如果發送文本信息
            $msgType = "text";
            //回復內容
            $contentStr = "你發送的是連接文件";
            //格式化字符串
            $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);
            //將xml信息返回給客戶端
            echo $resultStr;
        }
        ////////////////////////////////////////////////////////////////////////////////////
        /*
        //判斷用戶發送關鍵詞是否為空      
         
        if(!empty( $keyword ))
        {
          //如果發送文本信息
          $msgType = "text";
          //回復內容
          $contentStr = "大家好,我是hero";
          //格式化字符串
          $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);
          //將xml信息返回給客戶端
          echo $resultStr;
        }else{
          echo "Input something...";
        }
        */
    }else {
      echo "";
      exit;
    }
  }
     
  private function checkSignature()
  {
    // you must define TOKEN by yourself
    //判斷是否定義了TOKEN,如果沒有就拋出一個異常
    if (!defined("TOKEN")) {
      throw new Exception('TOKEN is not defined!');
    }
     
    $signature = $_GET["signature"];//接受微信加密簽名
    $timestamp = $_GET["timestamp"];//接受時間戳
    $nonce = $_GET["nonce"];//接受隨機數
         
    $token = TOKEN;//把TOKEN常量賦值給$token
    //把相關參數組裝成數組
    $tmpArr = array($token, $timestamp, $nonce);
    // use SORT_STRING rule
    //排序
    sort($tmpArr, SORT_STRING);
    //把排序后的數組轉換成字符串
    $tmpStr = implode( $tmpArr );
    //通過哈希算法加密
    $tmpStr = sha1( $tmpStr );
    //與加密簽名進行對比
    if( $tmpStr == $signature ){
      //相同返回true
      return true;
    }else{
      //不同返回false
      return false;
    }
  }
}
 
?>

以上是“PHP微信API接口類的示例分析”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

运城市| 台中县| 贞丰县| 宝鸡市| 平武县| 芦溪县| 杭锦旗| 南木林县| 苍南县| 馆陶县| 西峡县| 甘孜| 杨浦区| 天全县| 德令哈市| 武强县| 郸城县| 黎平县| 临沧市| 峨山| 泾阳县| 松潘县| 洛隆县| 石渠县| 岚皋县| 远安县| 龙江县| 视频| 广平县| 宜州市| 邯郸县| 营山县| 宁德市| 滦南县| 临清市| 元朗区| 海口市| 两当县| 东乌珠穆沁旗| 普兰县| 抚顺市|