婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

主頁 > 知識庫 > php微信公眾號開發之二級菜單

php微信公眾號開發之二級菜單

熱門標簽:蘇州外呼系統有效果嗎 400 電話 辦理 亳州企業外呼系統 兼職做地圖標注好賺錢嗎 地圖標注怎么做商戶驗證 山東電銷卡外呼系統原理是什么 海南外呼系統方案 智能電銷語音機器人資訊 打開百度地圖標注

本文實例為大家分享了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實現微信公眾號企業號自定義菜單接口示例
  • PHP實現創建微信自定義菜單的方法示例
  • php微信高級接口調用方法(自定義菜單接口、客服接口、二維碼)
  • php微信開發之自定義菜單實現
  • php微信開發之自定義菜單完整流程
  • php微信開發自定義菜單
  • 微信自定義菜單的創建/查詢/取消php示例代碼
  • 微信利用PHP創建自定義菜單的方法
  • php實現微信公眾平臺賬號自定義菜單類
  • php實現微信公眾平臺賬號自定義菜單類

標簽:溫州 呼倫貝爾 金華 安康 萊蕪 綏化 清遠 紹興

巨人網絡通訊聲明:本文標題《php微信公眾號開發之二級菜單》,本文關鍵詞  php,微信,公眾,號開,發之,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《php微信公眾號開發之二級菜單》相關的同類信息!
  • 本頁收集關于php微信公眾號開發之二級菜單的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 社旗县| 牟定县| 清流县| 山阳县| 通山县| 清涧县| 张掖市| 莎车县| 平湖市| 琼结县| 尉氏县| 汶川县| 望江县| 宜兴市| 韩城市| 镇平县| 乌兰浩特市| 监利县| 克东县| 贵德县| 文水县| 垣曲县| 伊通| 白沙| 伽师县| 曲周县| 汾西县| 来凤县| 偃师市| 台北县| 运城市| 江达县| 揭阳市| 洛川县| 泰来县| 册亨县| 嫩江县| 兴义市| 德格县| 建德市| 新宁县|