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

溫馨提示×

溫馨提示×

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

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

使用php怎么在微信公眾號中實現二級菜單

發布時間:2021-06-07 16:27:06 來源:億速云 閱讀:154 作者:Leah 欄目:開發技術

本篇文章給大家分享的是有關使用php怎么在微信公眾號中實現二級菜單,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

核心代碼:

$postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA);
 $fromUsername = $postObj->FromUserName;
 $toUsername = $postObj->ToUserName;
 $MsgType=$postObj->MsgType;
 $keyword = trim($postObj->Content);
 $time = time();
 $textTpl = "<xml>
    <ToUserName><![CDATA[%s]]></ToUserName>
     <FromUserName><![CDATA[%s]]></FromUserName>
     <CreateTime>%s</CreateTime>
      <MsgType><![CDATA[text]]></MsgType>
      <Content>%s</Content>
     <FuncFlag>0</FuncFlag>
    </xml>";    

   //用 戶 名 : $user
   //密  碼 : $pwd
   //主庫域名 : $host
   //從庫域名 : SAE_MYSQL_HOST_S
   //端  口 : $port
   //數據庫名 : $dbname

     $dbname = "app_dq095";
     $host = "w.rdc.sae.sina.com.cn";
     $port = "3306";
     $user = "4k514n103z";
     $pwd = "2402314li2j1i5im1xy2xizj5y332w2x41k2z203";

     /*接著調用mysql_connect()連接服務器*/
     // 連主庫
     $db = mysql_connect($host,$user,$pwd);

     if(!$db){
      die("Connect Server Failed: " . mysql_error($db));
     }

     /*連接成功后立即調用mysql_select_db()選中需要連接的數據庫*/
     if (!mysql_select_db($dbname)) {
      die("Select Database Failed: " . mysql_error($db));
     }

      mysql_query("set names utf-8",$db); 
     /*至此連接已完全建立,就可對當前數據庫進行相應的操作了*/
     /*!!!注意,無法再通過本次連接調用mysql_select_db來切換到其它數據庫了!!!*/
     /* 需要再連接其它數據庫,請再使用mysql_connect+mysql_select_db啟動另一個連接*/

     /**
      * 接下來就可以使用其它標準php mysql函數操作進行數據庫操作
      */

    if($keyword=="天氣")
    {
     $content="請輸入地區";
     $sql="INSERT INTO `weather`(`id`,`user`,`keyword`) VALUES (NULL,'{$fromUsername}','{$keyword}')";
     mysql_query($sql); 
    }
    else
    {
     $sql="SELECT `keyword` FROM `weather` WHERE `user`= '" . $fromUsername . "'";
     $query=mysql_query($sql);
     $rs=mysql_fetch_array($query);
     $c= $rs['keyword'];
     echo $c;
     if($c=="天氣")
     {
      $url="http://api.map.baidu.com/telematics/v2/weather?location={$keyword}&ak=1a3cde429f38434f1811a75e1a90310c";

       $fa=file_get_contents($url);
       $f=simplexml_load_string($fa);
       $city=$f->currentCity;
       $da1=$f->results->result[0]->date;
       $da2=$f->results->result[1]->date;
       $da3=$f->results->result[2]->date;  
       $w1=$f->results->result[0]->weather;
       $w2=$f->results->result[1]->weather;
       $w3=$f->results->result[2]->weather;  
       $p1=$f->results->result[0]->wind;
       $p2=$f->results->result[1]->wind;
       $p3=$f->results->result[2]->wind;
       $q1=$f->results->result[0]->temperature;
       $q2=$f->results->result[1]->temperature;
       $q3=$f->results->result[2]->temperature; 
       $d1=$city.$da1.$w1.$p1.$q1;
       $d2=$city.$da2.$w2.$p2.$q2;
       $d3=$city.$da3.$w3.$p3.$q3;
       $content=$d1.$d2.$d3;
       if (empty($content))
       {
        $content="你輸入的地區有誤";}
       }
   else{
  $content="請先輸入天氣";
   } 
 }        
 $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time,$content);
echo $resultStr;

index.php 整體代碼如下:

<?php
/**
 * wechat php test
 */

//define your token
define("TOKEN", "weixin");
$wechatObj = new wechatCallbackapiTest();
$wechatObj->responseMsg();

class wechatCallbackapiTest
{
 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
  $postStr = $GLOBALS["HTTP_RAW_POST_DATA"];

  //extract post data
  if (!empty($postStr)){


    $postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA);
    $fromUsername = $postObj->FromUserName;
    $toUsername = $postObj->ToUserName;
    $MsgType=$postObj->MsgType;
    $keyword = trim($postObj->Content);
    $time = time();
    $textTpl = "<xml>
       <ToUserName><![CDATA[%s]]></ToUserName>
       <FromUserName><![CDATA[%s]]></FromUserName>
       <CreateTime>%s</CreateTime>
        <MsgType><![CDATA[text]]></MsgType>
        <Content>%s</Content>
        <FuncFlag>0</FuncFlag>
       </xml>";    

     //用 戶 名 : $user
     //密  碼 : $pwd
     //主庫域名 : $host
     //從庫域名 : SAE_MYSQL_HOST_S
     //端  口 : $port
     //數據庫名 : $dbname

     $dbname = "app_dq095";
     $host = "w.rdc.sae.sina.com.cn";
     $port = "3306";
     $user = "4k514n103z";
     $pwd = "2402314li2j1i5im1xy2xizj5y332w2x41k2z203";

     /*接著調用mysql_connect()連接服務器*/
     // 連主庫
     $db = mysql_connect($host,$user,$pwd);

     if(!$db){
      die("Connect Server Failed: " . mysql_error($db));
     }

     /*連接成功后立即調用mysql_select_db()選中需要連接的數據庫*/
     if (!mysql_select_db($dbname)) {
      die("Select Database Failed: " . mysql_error($db));
     }

      mysql_query("set names utf-8",$db); 
     /*至此連接已完全建立,就可對當前數據庫進行相應的操作了*/
     /*!!!注意,無法再通過本次連接調用mysql_select_db來切換到其它數據庫了!!!*/
     /* 需要再連接其它數據庫,請再使用mysql_connect+mysql_select_db啟動另一個連接*/

     /**
      * 接下來就可以使用其它標準php mysql函數操作進行數據庫操作
      */

    if($keyword=="天氣")
    {
     $content="請輸入地區";
     $sql="INSERT INTO `weather`(`id`,`user`,`keyword`) VALUES (NULL,'{$fromUsername}','{$keyword}')";
     mysql_query($sql); 
    }
    else
    {
     $sql="SELECT `keyword` FROM `weather` WHERE `user`= '" . $fromUsername . "'";
     $query=mysql_query($sql);
     $rs=mysql_fetch_array($query);
     $c= $rs['keyword'];
     echo $c;
     if($c=="天氣")
     {
      $url="http://api.map.baidu.com/telematics/v2/weather?location={$keyword}&ak=1a3cde429f38434f1811a75e1a90310c";

       $fa=file_get_contents($url);
       $f=simplexml_load_string($fa);
       $city=$f->currentCity;
       $da1=$f->results->result[0]->date;
       $da2=$f->results->result[1]->date;
       $da3=$f->results->result[2]->date;  
       $w1=$f->results->result[0]->weather;
       $w2=$f->results->result[1]->weather;
       $w3=$f->results->result[2]->weather;  
       $p1=$f->results->result[0]->wind;
       $p2=$f->results->result[1]->wind;
       $p3=$f->results->result[2]->wind;
       $q1=$f->results->result[0]->temperature;
       $q2=$f->results->result[1]->temperature;
       $q3=$f->results->result[2]->temperature; 
       $d1=$city.$da1.$w1.$p1.$q1;
       $d2=$city.$da2.$w2.$p2.$q2;
       $d3=$city.$da3.$w3.$p3.$q3;
       $content=$d1.$d2.$d3;
       if (empty($content))
       {
        $content="你輸入的地區有誤";}
       }
     else{
      $content="請先輸入天氣";
     } 
    }        
    $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time,$content);
    echo $resultStr;

  }else {
   echo "";
   exit;
  }
 }

 private function checkSignature()
 {
  $signature = $_GET["signature"];
  $timestamp = $_GET["timestamp"];
  $nonce = $_GET["nonce"]; 

  $token = TOKEN;
  $tmpArr = array($token, $timestamp, $nonce);
  sort($tmpArr);
  $tmpStr = implode( $tmpArr );
  $tmpStr = sha1( $tmpStr );

  if( $tmpStr == $signature ){
   return true;
  }else{
   return false;
  }
 }
}

?>

以上就是使用php怎么在微信公眾號中實現二級菜單,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

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

php
AI

浦东新区| 深圳市| 新沂市| 凌云县| 湖南省| 富裕县| 景谷| 洛阳市| 淮安市| 府谷县| 铁岭市| 西乡县| 法库县| 柳江县| 扎囊县| 峨山| 搜索| 曲沃县| 讷河市| 建昌县| 建平县| 蛟河市| 虹口区| 安图县| 武义县| 临猗县| 白水县| 梁河县| 莒南县| 新巴尔虎右旗| 江门市| 和龙市| 哈尔滨市| 玉树县| 九江县| 睢宁县| 泸西县| 建德市| 灵宝市| 耒阳市| 泾川县|