夺命雷公狗---微信开发11----接收并回复链接消息

index.php 代码如下:

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

//define your token
require_once "common.php";
define("TOKEN", "twgdh");
$wechatObj = new wechatCallbackapiTest();
//当接入成功后,请注销这句话,否则,会反复验证。
//$wechatObj->valid();
//添加响应请求的语句
$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)){
                /* libxml_disable_entity_loader is to prevent XML eXternal Entity Injection,
                   the best way is to check the validity of xml by yourself */
                // 使用simplexml技术对xml进行解析
                // libxml_disable_entity_loader(true), 是从安全性考虑,为了防止xml外部注入,
                //只对xml内部实体内容进行解析
                libxml_disable_entity_loader(true);
                //加载 postStr 字符串
                  $postObj = simplexml_load_string($postStr, ‘SimpleXMLElement‘, LIBXML_NOCDATA);
                file_put_contents(‘abc.log‘, "\r\n\r\n". $postStr, FILE_APPEND);
                $fromUsername = $postObj->FromUserName;
                file_put_contents(‘abc.log‘, "\r\n\r\n". $fromUsername, FILE_APPEND);
                $toUsername = $postObj->ToUserName;
                file_put_contents(‘abc.log‘, "\r\n\r\n". $toUsername, FILE_APPEND);
                $keyword = trim($postObj->Content);
                $time = time();
                global $tmp_arr;
                //根据接收到的消息类型,来进行分支处理(switch)
                switch($postObj->MsgType)
                {
                    case ‘event‘:
                        if($postObj->Event == ‘subscribe‘)
                        {

                            $contentStr = "欢迎关注leigood微信测试号噢";
                            $resultStr = sprintf($tmp_arr[‘text‘], $fromUsername, $toUsername, $time, $contentStr);
                            echo $resultStr;
                        }
                        break;
                    case ‘text‘: //回复文本模块
                        //必须是以“图片”开头,后面并且是以数字结尾
                        if(preg_match("/^图片([0-9][0-9]*)$/u",$keyword,$matches)){
                            $connect = mysql_connect(‘localhost‘,‘root‘,‘root‘);
                            mysql_select_db(‘wxdb‘,$connect);
                            mysql_query(‘set names utf8‘);
                            $matches = array();
                            preg_match("/^图片([0-9][0-9]*)$/u",$keyword,$matches);
                            $sql = "select media_id from keep_image_uploads where id=$matches[1]";
                            $res = mysql_query($sql,$connect);
                            if($row = mysql_fetch_assoc($res)){
                                //先取出么media_id
                                $media_id = $row[‘media_id‘];
                                $resultStr = sprintf($tmp_arr[‘image‘], $fromUsername, $toUsername, $time, $media_id);
                                echo $resultStr;
                            }else{
                                $contentStr = ‘该图片还没上传噢!‘;
                                $resultStr = sprintf($tmp_arr[‘text‘], $fromUsername, $toUsername, $time, $contentStr);
                                echo $resultStr;
                            }
                        }else if($keyword == ‘十八摸‘){
                            $title = ‘十八摸‘; //标题
                            $Description = ‘十八摸,您懂得~~~~~‘; //音乐描述
                            $MusicUrl = "http://weixin.showtp.com/music/gq1.mp3"; //音乐链接
                            $HQMusicUrl = "http://weixin.showtp.com/music/gq1.mp3"; //高质量音乐链接

                            $resultStr = sprintf($tmp_arr[‘music‘], $fromUsername, $toUsername, $time, $title,$Description,$MusicUrl,$HQMusicUrl);
                            echo $resultStr;
                        }else if($keyword == ‘初夜泪流‘){
                            $title = ‘初夜泪流‘; //标题
                            $Description = ‘初夜泪流,时间宝贵的夜‘; //音乐描述
                            $MusicUrl = "http://weixin.showtp.com/music/gq2.mp3"; //音乐链接
                            $HQMusicUrl = "http://weixin.showtp.com/music/gq2.mp3"; //高质量音乐链接

                            $resultStr = sprintf($tmp_arr[‘music‘], $fromUsername, $toUsername, $time, $title,$Description,$MusicUrl,$HQMusicUrl);
                            echo $resultStr;
                        }else if($keyword == ‘头条新闻‘){
                            $Title = ‘百度PK谷歌‘;
                            $Description = ‘在国际舞台上百度和谷歌的pk究竟相差多远呢?‘; //图文消息描述
                            $PicUrl = "http://weixin.showtp.com/image/logo.png";
                            //图片链接,支持JPG、PNG格式,较好的效果为大图360*200,小图200*200
                            $Url = "http://www.cyzone.cn/a/20150225/270130.html"; //点击图文消息跳转链接
                            $resultStr = sprintf($tmp_arr[‘singlenews‘], $fromUsername, $toUsername, $time, $Title, $Description, $PicUrl, $Url);
                            echo $resultStr;
                        }else if($keyword == ‘新闻‘){
                            //处理返回多条图文消息,但不能超过十条
                            $news_arr = array(
                                ‘news1‘=>array(‘title‘=>‘百度新闻‘,‘Description‘=>‘大陆百度很牛逼噢‘,
                                    ‘PicUrl‘=>‘http://weixin.showtp.com/image/logo.png‘,
                                    ‘Url‘=>‘http://www.baidu.com‘),
                                ‘news2‘=>array(‘title‘=>‘新浪新闻‘,‘Description‘=>‘大陆百度很牛逼噢‘,
                                    ‘PicUrl‘=>‘http://weixin.showtp.com/image/news1.png‘,
                                    ‘Url‘=>‘http://www.sina.com.cn‘),
                                ‘news3‘=>array(‘title‘=>‘腾讯新闻‘,‘Description‘=>‘大陆百度很牛逼噢‘,
                                    ‘PicUrl‘=>‘http://weixin.showtp.com/image/news2.png‘,
                                    ‘Url‘=>‘http://www.qq.com‘),
                                ‘news4‘=>array(‘title‘=>‘搜狐新闻‘,‘Description‘=>‘大陆百度很牛逼噢‘,
                                    ‘PicUrl‘=>‘http://weixin.showtp.com/image/news3.png‘,
                                    ‘Url‘=>‘http://www.sohu.com‘)
                                );

                                $resultStr = sprintf($tmp_arr[‘newses‘], $fromUsername, $toUsername, $time,
                                $news_arr[‘news1‘][‘title‘],
                                $news_arr[‘news1‘][‘Description‘],
                                $news_arr[‘news1‘][‘PicUrl‘],
                                $news_arr[‘news1‘][‘Url‘],

                                $news_arr[‘news2‘][‘title‘],
                                $news_arr[‘news2‘][‘Description‘],
                                $news_arr[‘news2‘][‘PicUrl‘],
                                $news_arr[‘news2‘][‘Url‘],

                                $news_arr[‘news3‘][‘title‘],
                                $news_arr[‘news3‘][‘Description‘],
                                $news_arr[‘news3‘][‘PicUrl‘],
                                $news_arr[‘news3‘][‘Url‘],

                                $news_arr[‘news4‘][‘title‘],
                                $news_arr[‘news4‘][‘Description‘],
                                $news_arr[‘news4‘][‘PicUrl‘],
                                $news_arr[‘news4‘][‘Url‘]

                                );
                            echo $resultStr;

                        }else{
                            $contentStr = ‘您输入的格式有误‘;
                            $resultStr = sprintf($tmp_arr[‘text‘], $fromUsername, $toUsername, $time, $contentStr);
                            echo $resultStr;
                        }
                        break;
                    case ‘image‘: //处理用户上传图片
                        $media_id = $postObj -> MediaId; //获取到用户上传的图片的mediaid
                        $resultStr = sprintf($tmp_arr[‘image‘], $fromUsername, $toUsername, $time, $media_id);
                        echo $resultStr;

                        //将图片保存到本地服务器的文件系统
                        //1.先给图片创建一个名字
                        $image_file_name = time().‘.jpg‘;
                        //2.获取该图片的内容
                        $image_file = file_get_contents($postObj->PicUrl);
                        //3.保存到本地服务器的文件系统
                        //提醒:一定要保证您创建的文件夹是www用户可读可写,否则无法保存该图片到文件夹下
                        file_put_contents("./uploadimage/".$image_file_name,$image_file);

                        //将图片的路径和相关信息入库
                        //1.创建一张表
                        //2.链接mysql数据库,并且添加图片信息
                        $connect = mysql_connect(‘localhost‘,‘root‘,‘root‘);
                        mysql_select_db(‘wxdb‘,$connect);
                        mysql_query(‘set names utf8‘);
                        $media_path = "./uploadimage/".$image_file_name; //路径
                        $sql = "insert into keep_image_uploads (id,openid,media_id,media_path) values(NULL,‘{$fromUsername}‘,‘{$media_id}‘,‘{$media_path}‘)";
                        mysql_query($sql,$connect);
                        break;
                    case ‘voice‘: //处理用户上传语言的业务逻辑
                        $media_id = $postObj -> MediaId; //获取media_id的id号
                        $resultStr = sprintf($tmp_arr[‘voice‘], $fromUsername, $toUsername, $time, $media_id);
                        echo $resultStr;
                        break;
                    case ‘location‘: //处理用户上传的地理位置信息
                        $Location_X = $postObj -> Location_X; //获取上传地理位置的纬度
                        $Location_Y = $postObj -> Location_Y; //获取上传地地理位置经度
                        $contentStr = "您上报的地理位置是:\n经度是:{$Location_Y} \n纬度是: {$Location_X}";
                        $resultStr = sprintf($tmp_arr[‘text‘], $fromUsername, $toUsername, $time, $contentStr);
                        echo $resultStr;
                        break;
                    case ‘link‘: //接收并回复链接信息
                        //获取到用户上传的链接信息
                        $Title = $postObj -> Title;
                        $Url = $postObj -> Url;
                        $contentStr = "<a href=‘{$Url}‘>{$Title}</a>";
                        $resultStr = sprintf($tmp_arr[‘text‘], $fromUsername, $toUsername, $time, $contentStr);
                        echo $resultStr;
                        break;

                }
        }else {
            echo "";
            exit;
        }
    }

    private function checkSignature()
    {
        // you must define TOKEN by yourself
        if (!defined("TOKEN")) {
            throw new Exception(‘TOKEN is not defined!‘);
        }

        $signature = $_GET["signature"];
        $timestamp = $_GET["timestamp"];
        $nonce = $_GET["nonce"];

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

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

?>

common.php 代码如下:

<?php
    $tmp_arr = array(
    ‘text‘ => <<<XML
<xml>
<ToUserName><![CDATA[%s]]></ToUserName>
<FromUserName><![CDATA[%s]]></FromUserName>
<CreateTime>%s</CreateTime>
<MsgType><![CDATA[text]]></MsgType>
<Content><![CDATA[%s]]></Content>
<FuncFlag>0</FuncFlag>
</xml>
XML
,
    ‘image‘=> <<<XML
<xml>
<ToUserName><![CDATA[%s]]></ToUserName>
<FromUserName><![CDATA[%s]]></FromUserName>
<CreateTime>%s</CreateTime>
<MsgType><![CDATA[image]]></MsgType>
<Image>
<MediaId><![CDATA[%s]]></MediaId>
</Image>
</xml>
XML
,
    ‘voice‘=> <<<XML
<xml>
<ToUserName><![CDATA[%s]]></ToUserName>
<FromUserName><![CDATA[%s]]></FromUserName>
<CreateTime>%s</CreateTime>
<MsgType><![CDATA[voice]]></MsgType>
<Voice>
<MediaId><![CDATA[%s]]></MediaId>
</Voice>
</xml>
XML
,
    ‘music‘=> <<<XML
<xml>
<ToUserName><![CDATA[%s]]></ToUserName>
<FromUserName><![CDATA[%s]]></FromUserName>
<CreateTime>%s</CreateTime>
<MsgType><![CDATA[music]]></MsgType>
<Music>
<Title><![CDATA[%s]]></Title>
<Description><![CDATA[%s]]></Description>
<MusicUrl><![CDATA[%s]]></MusicUrl>
<HQMusicUrl><![CDATA[%s]]></HQMusicUrl>
</Music>
</xml>
XML
,
    ‘singlenews‘=> <<<XML
<xml>
<ToUserName><![CDATA[%s]]></ToUserName>
<FromUserName><![CDATA[%s]]></FromUserName>
<CreateTime>%s</CreateTime>
<MsgType><![CDATA[news]]></MsgType>
<ArticleCount>1</ArticleCount>
<Articles>
<item>
<Title><![CDATA[%s]]></Title>
<Description><![CDATA[%s]]></Description>
<PicUrl><![CDATA[%s]]></PicUrl>
<Url><![CDATA[%s]]></Url>
</item>
</Articles>
</xml>
XML
,
    ‘newses‘=> <<<XML
<xml>
<ToUserName><![CDATA[%s]]></ToUserName>
<FromUserName><![CDATA[%s]]></FromUserName>
<CreateTime>%s</CreateTime>
<MsgType><![CDATA[news]]></MsgType>
<ArticleCount>4</ArticleCount>
<Articles>
<item>
<Title><![CDATA[%s]]></Title>
<Description><![CDATA[%s]]></Description>
<PicUrl><![CDATA[%s]]></PicUrl>
<Url><![CDATA[%s]]></Url>
</item>
<item>
<Title><![CDATA[%s]]></Title>
<Description><![CDATA[%s]]></Description>
<PicUrl><![CDATA[%s]]></PicUrl>
<Url><![CDATA[%s]]></Url>
</item>
<item>
<Title><![CDATA[%s]]></Title>
<Description><![CDATA[%s]]></Description>
<PicUrl><![CDATA[%s]]></PicUrl>
<Url><![CDATA[%s]]></Url>
</item>
<item>
<Title><![CDATA[%s]]></Title>
<Description><![CDATA[%s]]></Description>
<PicUrl><![CDATA[%s]]></PicUrl>
<Url><![CDATA[%s]]></Url>
</item>
</Articles>
</xml>
XML
    );
时间: 2024-10-17 21:12:51

夺命雷公狗---微信开发11----接收并回复链接消息的相关文章

夺命雷公狗---微信开发23----客服消息接口基础和推送文本

我们这边课程里面一共用到了三个文件,分别是WeChat.class.php和common.php以及index.php 我们在写这个功能之前也要学会查手册,手册我们可以在微信开发这里找到,如下所示: 点击进去后我们将会看到客服接口,我们可以点击下进去看看里面有什么动动 这里有一个发送文本消息的,我们点击进去看下 这里很明显就看到文本消息是通过一个json数据来进行实现的,废话不多说,开工 这里我们先来写一个WeChat.php的文件,这里作用主要适用于封装一个CURL上传类的,代码如下所示: <

夺命雷公狗---微信开发27----客服消息接口基础和推送图文消息

按照25课的套路在改下index.php即可实现,代码如下所示: <?php /** * wechat php test */ //define your token require_once "common.php"; //这里是引入curl发送函数的类 require_once 'WeChat.class.php'; define("TOKEN", "twgdh"); //这里让这个类继承了curl发送参数的类 class wechat

夺命雷公狗---微信开发39----微信语言识别接口1

语音识别接口的基本介绍 注意: 由于客户端缓存,开发者开启或者关闭语音识别功能,对新关注者立即生效,对已关注用户需要24小时生效,开发者可以从新关注帐号进行测试. 我们可以在测试号下方的体验接口权限表里面找到“接收语音识别结果”,如下图所示 现在这里是显示的关闭,就是开启,如果想使用,那么就必“关闭”. 点击一下开启后,他就会问你是否关闭,所以这里的意思是相反的,如图所示: 然后再点击一下确定即可关闭. 不过我们现在要对他进行开发所以这里就要显示关闭这两个字,然后点击“接收语音识别结果”即可进入

夺命雷公狗---微信开发17----自定义菜单的事件推送,响应菜单的CLICK

废话不多说,index.php 代码如下所示: <?php /** * wechat php test */ //define your token require_once "common.php"; define("TOKEN", "twgdh"); $wechatObj = new wechatCallbackapiTest(); //当接入成功后,请注销这句话,否则,会反复验证. //$wechatObj->valid();

夺命雷公狗---微信开发47----获取用户地理位置接口(2)

我们现在要做的是查找距离最近的“肯德基”,我们需要通过百度提供的LBS云服务定位距离您最近的肯德基,该程序需要到LBS后台进行相关设置,然后在完成程序 用户在客户端输入“肯德基”公众号就会自动回复距离用户最近的”肯德基“ 废话不多说,我们先到http://developer.baidu.com/里面找到LBS云------再到服务接口--------再到LBS云,如下图所示: 点击进来后,我们首先要获取一个密钥, 然后出了红色框部分填下数据即可,别的地方都不用改,直接提交即可 上面的0.0.0.

夺命雷公狗---微信开发26----客服消息接口基础和推送视频

我们按照上一课的套路继续改写下index.php即可实现,代码如下所示: <?php /** * wechat php test */ //define your token require_once "common.php"; //这里是引入curl发送函数的类 require_once 'WeChat.class.php'; define("TOKEN", "twgdh"); //这里让这个类继承了curl发送参数的类 class we

夺命雷公狗---微信开发25----客服消息接口基础和推送语音

按照23课的部署,我们再进行改造下WeChat.class.php文件,将get_token.php的代码封装到WeChat类中去,WeChat.class.php代码如下: <?php class WeChat{ //我把请求内容封装到类里面 protected function http_request($url, $data=null){ //我们使用curl函数 //初始化 $ch = curl_init(); //设置变量 curl_setopt($ch, CURLOPT_URL,$u

夺命雷公狗---微信开发40----微信语言识别接口2(点歌系统)

语音识别时候记住一定要加上中文的“!”号噢,否则一定不会成功 点歌系统开工,index.php代码如下所示: <?php /** * wechat php test */ //define your token require_once "common.php"; //这里是引入curl发送函数的类 require_once 'WeChat.class.php'; define("TOKEN", "twgdh"); //这里让这个类继承了c

夺命雷公狗---微信开发48----获取用户地理位置接口(3)

这节课程我们来做一个游戏,这个游戏的名字叫“寻找美女做老婆”, 用户该游戏后,每隔5s(秒)会收到他距离未来老婆的信息,如果找到美女后,输入“老婆”即可成功. 这次我们涉及到一个车联网API,我们先来看下他在哪,张成什么样. http://lbsyun.baidu.com/index.php?title=car 找到接口说明,里面有一个测距,如下所示: 我们可以看到这就是他的接口 参数说明以及返回的参数如下所示: 很明显他就是返回一个XML或者是json格式的数据,默认返回的是一个XML格式的数