微信之关键字回复文本信息

(1)验证token
(2)token验证通过后,关键字回复信息
源码如下:


/**
  * wechat php test
  */

//define your token
define("TOKEN", "sayhello");
$wechatObj = new wechatCallbackapiTest();
$wechatObj->valid();//验证掉用接口配置!
$wechatObj->responseTextMsg();//回复文本消息
class wechatCallbackapiTest
{  

    public function valid()
    {
        $echoStr = $_GET["echostr"];
        //valid signature , option
        if($this->checkSignature()){
            echo $echoStr;
            exit;
        }
    }
      //回复文本消息
    public function responseTextMsg()
    {
        //get post data, May be due to the different environments
        $postStr = $GLOBALS["HTTP_RAW_POST_DATA"];

        //获取POST的xml数据
        if (!empty($postStr)){

                $postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA);
                $fromUsername = $postObj->FromUserName;
                $toUsername = $postObj->ToUserName;
                $keyword = trim($postObj->Content);
                $time = time();
                $textTpl = "
                            
                            
                            %s
                            
                            
                            0
                            ";  


                if(!empty( $keyword )&&strstr($keyword, "星期一"))
                { 

                    $msgType = "text";
                    $contentStr = "今天天气很好";
                    $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);
                    echo $resultStr;


                }else{
                    echo "Input something...";
                }

        }else {
            echo "123";
            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;
        }
    }
}

?>

你可能感兴趣的:(微擎,微信)