PHP微信開發——自動回覆

qq_41478331發表於2018-04-18

1.關鍵詞回覆文字內容

首先我們需在LaneWeChat/core/aes/wechatrequest.lib.php下面的text()方法中需要進行一些修改,程式碼如下:

 public static function text(&$request){
        // $content = '收到文字訊息';
        // return ResponsePassive::text($request['fromusername'], $request['tousername'], $content);
        $mpid = $_GET['id'];
        $content = $request['content'];
        $where['mp_id'] = $mpid;
        $where['keyword'] = $content;
        $data = M('mp_reply_rule')->where($where)->find();
        if ($data) {
            $reply_id = $data['reply_id'];
            $type = $data['type'];
            if ($type == "text") {
                $reply = M('mp_reply_text')->find($reply_id);
                $reply_text = $reply['content'];
                return ResponsePassive::text($request['fromusername'],$request['tousername'],$reply_text);
            }else if($type == "image"){
                $reply = M('mp_reply_image')->find($reply_id);
                $media_id=$reply['media_id'];
                return ResponsePassive::image($request['fromusername'],$request['tousername'],$media_id);
            }else if($type == "news"){
                $reply = M('mp_reply_news')->find($reply_id);
                $item[] = ResponsePassive::newsItem($reply['title'],$reply['descrpition'],$reply['picurl'],$reply['url']);
                return ResponsePassive::news($request['fromusername'],$request['tousername'],$item);
            }
        }else{
            return 'success';
        }

    }

其次我們開始寫後臺PHP程式碼

public function replytext(){
  if(IS_GET){
  $this->display();
  }else{
  $content=I('post.content');
  $keyword=I('post.keyword');
  $data['content']=$content;
  $reply_id=M('mp_reply_text')->add($data);
      if(isset($reply_id)){
        $mp=getCurrentMp();
        $data['mp_id']=$mp['id'];   
        $data['keyword']=$keyword; 
        $data['type']='text';                   
        $data['reply_id']=$reply_id;
                     // print_r($data);
                     // exit;
        M('mp_reply_rule')->add($data);
        $this->ajaxReturn(array('msg'=>'上傳成功'));                        
      }else{
        $this->ajaxReturn(array('msg'=>'上傳失敗'));
      }
    }

  }

根據前臺頁面輸入關鍵字以及回覆內容就可以實現自動回覆文字內容

2.根據關鍵詞自動回覆圖片

根據LaneWeChat/core/aes/wechatrequest.lib.php中text()中的方法可以自動判斷要回復的是那種型別  只需在php後臺中獲取其type,自動回覆圖片我們在PHP中寫入如下程式碼:

public function replyimage(){
  if(IS_GET){
      $this->display(); 
   }else{
    $url=I('post.url');//圖片在本地伺服器上的路徑  
    $file=realpath('.' .$url);// 相對路徑換位結對路徑      
    $accessToken=getAccess_token();
    include APP_PATH .'LaneWeChat/lanewechat.php';
    $url="https://api.weixin.qq.com/cgi-bin/material/add_material?accessaccessToken&type=image";
    $data['media']='@' .$file;
    $ret=Curl::callWebServer($url,$data,'post',true,false);
    if(isset($ret['media_id'])){
         $mp=getCurrentMp();
         $data['url']=$url;
         $data['media_id']=$ret['media_id'];       
         $reply_id=M('mp_reply_image')->add($data);
         $keyword=I('post.keyword');
         if(isset($reply_id)){
           $mp=getCurrentMp();
           $data['mp_id']=$mp['id'];   
           $data['keyword']=$keyword; 
           $data['type']='image';                   
           $data['reply_id']=$reply_id;
           M('mp_reply_rule')->add($data);  
         $this->ajaxReturn(array('msg'=>'上傳成功'));
      }else{
        $this->ajaxReturn(array('msg'=>'上傳失敗'));
      }
    }else{
        $this->ajaxReturn(array('msg'=>'上傳失敗')); 
      }
  }         

}

但要注意我們在回覆圖片時應提前在資料表中存入一張要回復的圖片,所以我們還需在PHP中寫入upload()方法。

3.根據關鍵詞回覆圖文訊息

相當於將回覆文字和圖片的道理相同,只需稍作修改即可,獲取有效的欄位。

相關文章