当前位置:首页 > PHP教程 > php高级应用 > 列表

php微信开发之图片回复功能

发布:smiling 来源: PHP粉丝网  添加日期:2018-11-14 15:26:46 浏览: 评论:0 

本文实例为大家分享了php微信图片回复功能的具体代码,供大家参考,具体内容如下:

  1. <!--?php 
  2. /** 
  3.  * wechat php test 
  4.  */ 
  5.   
  6. //define your token 
  7. define("TOKEN""weixin"); 
  8. $wechatObj = new wechatCallbackapiTest(); 
  9. //$wechatObj--->valid(); 
  10. $wechatObj->responseMsg(); 
  11. class wechatCallbackapiTest 
  12.   public function valid() 
  13.   { 
  14.     $echoStr = $_GET["echostr"]; 
  15.   
  16.     //valid signature , option 
  17.     if($this->checkSignature()){ 
  18.       echo $echoStr
  19.       exit
  20.     } 
  21.   } 
  22.   
  23.   public function responseMsg() 
  24.   { 
  25.     //get post data, May be due to the different environments 
  26.     $postStr = $GLOBALS["HTTP_RAW_POST_DATA"]; 
  27.   
  28.     //extract post data 
  29.     if (!emptyempty($postStr)){ 
  30.   
  31.         $postObj = simplexml_load_string($postStr'SimpleXMLElement', LIBXML_NOCDATA); 
  32.         $fromUsername = $postObj->FromUserName; 
  33.         $toUsername = $postObj->ToUserName; 
  34.         $type = $postObj->MsgType; 
  35.         $customrevent = $postObj->Event; 
  36.         $keyword = trim($postObj->Content); 
  37.         $time = time(); 
  38.         $textTpl = "<xml> 
  39.               <tousername><!--[CDATA[%s]]--></tousername> 
  40.               <fromusername><!--[CDATA[%s]]--></fromusername> 
  41.               <createtime>%s</createtime> 
  42.               <msgtype><!--[CDATA[%s]]--></msgtype> 
  43.               <content><!--[CDATA[%s]]--></content> 
  44.               <funcflag>0</funcflag> 
  45.               </xml>";        
  46.         if($type=="event" and $customrevent=="subscribe"){ 
  47.           $contentStr = "33333333333"
  48.           $msgType = "text"
  49.           $resultStr = sprintf($textTpl$fromUsername$toUsername$time$msgType$contentStr); 
  50.           echo $resultStr
  51.           }   
  52.         if($type=="image" ){ 
  53.           $contentStr = "你的图片很棒!"
  54.           $msgType = "text"
  55.           $resultStr = sprintf($textTpl$fromUsername$toUsername$time$msgType$contentStr); 
  56.           echo $resultStr
  57.           }   
  58.   
  59.         if(!emptyempty$keyword )) 
  60.         {                 
  61.           $msgType = "text"
  62.           if($keyword=="1"){ 
  63.           $contentStr = "333";} 
  64.           if($keyword=="2"){ 
  65.           $contentStr = "444 
  66.           if($keyword=="3"){ 
  67.           $contentStr = "11";}           
  68.           $resultStr = sprintf($textTpl$fromUsername$toUsername$time$msgType$contentStr); 
  69.           echo $resultStr
  70.         }else
  71.           echo "Input something..."
  72.         } 
  73.   
  74.     }else { 
  75.       echo ""
  76.       exit
  77.     } 
  78.   } 
  79.   
  80.   private function checkSignature() 
  81.   { 
  82.     $signature = $_GET["signature"]; 
  83.     $timestamp = $_GET["timestamp"]; 
  84.     $nonce = $_GET["nonce"];   
  85.   
  86.     $token = TOKEN; 
  87.     $tmpArr = array($token$timestamp$nonce); 
  88.     sort($tmpArr); 
  89.     $tmpStr = implode( $tmpArr ); 
  90.     $tmpStr = sha1( $tmpStr ); 
  91.   
  92.     if$tmpStr == $signature ){ 
  93.       return true; 
  94.     }else
  95.       return false; 
  96.     } 
  97.   } 
  98.   
  99. ?> 

 

Tags: php微信开发 php图片回复

分享到: