登录  /  注册
首页 > php教程 > PHP源码 > 正文

微信接口类

PHP中文网
发布: 2016-08-22 10:13:32
原创
1119人浏览过

valid();
//开启自动回复功能
$wechatObj->responseMsg();


//定义类文件
class wechatCallbackapiTest
{
    //实现valid验证方法:实现对接微信公众平台
	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
        //接受用户端发送过来的xml数据
		$postStr = $GLOBALS["HTTP_RAW_POST_DATA"];

      	//extract post data
        //判断xml数据是否为空
		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 */
                libxml_disable_entity_loader(true);
                //通过simplexml进行xml解析
              	$postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA);
                //接受微信的手机端
                $fromUsername = $postObj->FromUserName;
                //微信公众平台
                $toUsername = $postObj->ToUserName;
                //接受用户发送的关键词
                $keyword = trim($postObj->Content);
                //1.接受用户消息类型
                $msgType = $postObj -> MsgType;
                //时间戳
                $time = time();
                //文本发送模板
                $textTpl = "%s0"; 
                //////////////////////////////////////////////////////////////////////////////////
                //如果用户发送的是文本类型文件,执行以下
                if($msgType == 'text'){
                    if(!empty( $keyword ))
                    {
                        /*这是一个实例
                            //如果发送文本信息
                            $msgType = "text";
                            //回复内容
                            if($keyword == "李楠"){
                                $contentStr = "叫我干嘛";
                            }else{
                                $contentStr = "叫我干嘛";
                            }
                            //格式化xml模板,参数与上面的模板是一一对应的.fromUsername和头Username是相反的,只写带%s的
                            $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);

                            //将xml信息返回给客户端
                            echo $resultStr;
                        */
                       if($keyword == "?" || $keyword == "?"){
                            $msgType = "text";
                            $contentStr = "1.特种服务号码\n2.通讯服务号码";
                            $resultStr = sprintf($textTpl,$fromUsername,$toUsername,$time,$msgType,$contentStr);
                            echo $resultStr;
                       }elseif($keyword == 1){
                            $msgType = "text";
                            $contentStr = "1.匪警:110\n2.火警:119\n3.急救:120";
                            $resultStr = sprintf($textTpl,$fromUsername,$toUsername,$time,$msgType,$contentStr);
                            echo $resultStr;
                       }elseif($keyword == 2){
                            $msgType = "text";
                            $contentStr = "1.中国移动:10086\n2.中国联通:10010";
                            $resultStr = sprintf($textTpl,$fromUsername,$toUsername,$time,$msgType,$contentStr);
                            echo $resultStr;
                       }
                    }else{
                        echo "不能不说话";
                    }
                }
                ////////////////////////////////////////////////////////////////////////////////////
                //接受图片信息
                if($msgType == "image"){
                        //如果发送文本信息
                        $msgType = "text";
                        //回复内容
                        $contentStr = "你发送的是图片文件";
                        //格式化字符串
                        $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);
                        //将xml信息返回给客户端
                        echo $resultStr;
                }
                ////////////////////////////////////////////////////////////////////////////////////
                if($msgType == "voice"){
                        //如果发送文本信息
                        $msgType = "text";
                        //回复内容
                        $contentStr = "你发送的是语音文件";
                        //格式化字符串
                        $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);
                        //将xml信息返回给客户端
                        echo $resultStr;
                }
                ////////////////////////////////////////////////////////////////////////////////////
                if($msgType == "video"){
                        //如果发送文本信息
                        $msgType = "text";
                        //回复内容
                        $contentStr = "你发送的是视频文件";
                        //格式化字符串
                        $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);
                        //将xml信息返回给客户端
                        echo $resultStr;
                }
                ////////////////////////////////////////////////////////////////////////////////////
                if($msgType == "shortvideo"){
                        //如果发送文本信息
                        $msgType = "text";
                        //回复内容
                        $contentStr = "你发送的是小视频文件";
                        //格式化字符串
                        $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);
                        //将xml信息返回给客户端
                        echo $resultStr;
                }
                ////////////////////////////////////////////////////////////////////////////////////
                if($msgType == "location"){
                        //如果发送文本信息
                        $msgType = "text";
                        //回复内容
                        $contentStr = "你发送的是地理位置文件";
                        //格式化字符串
                        $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);
                        //将xml信息返回给客户端
                        echo $resultStr;
                }
                ////////////////////////////////////////////////////////////////////////////////////
                if($msgType == "link"){
                        //如果发送文本信息
                        $msgType = "text";
                        //回复内容
                        $contentStr = "你发送的是连接文件";
                        //格式化字符串
                        $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);
                        //将xml信息返回给客户端
                        echo $resultStr;
                }
                ////////////////////////////////////////////////////////////////////////////////////
                /*
                //判断用户发送关键词是否为空           
				
                if(!empty( $keyword ))
                {
                    //如果发送文本信息
              		$msgType = "text";
                    //回复内容
                	$contentStr = "大家好,我是hero";
                    //格式化字符串
                	$resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);
                    //将xml信息返回给客户端
                	echo $resultStr;
                }else{
                	echo "Input something...";
                }
                */
        }else {
        	echo "";
        	exit;
        }
    }
		
	private function checkSignature()
	{
        // you must define TOKEN by yourself
        //判断是否定义了TOKEN,如果没有就抛出一个异常
        if (!defined("TOKEN")) {
            throw new Exception('TOKEN is not defined!');
        }
        
        $signature = $_GET["signature"];//接受微信加密签名
        $timestamp = $_GET["timestamp"];//接受时间戳
        $nonce = $_GET["nonce"];//接受随机数
        		
		$token = TOKEN;//把TOKEN常量赋值给$token
        //把相关参数组装成数组
		$tmpArr = array($token, $timestamp, $nonce);
        // use SORT_STRING rule
        //排序
		sort($tmpArr, SORT_STRING);
        //把排序后的数组转换成字符串
		$tmpStr = implode( $tmpArr );
        //通过哈希算法加密
		$tmpStr = sha1( $tmpStr );
		//与加密签名进行对比
		if( $tmpStr == $signature ){
            //相同返回true
			return true;
		}else{
            //不同返回false
			return false;
		}
	}
}

?>
登录后复制

智能AI问答
PHP中文网智能助手能迅速回答你的编程问题,提供实时的代码和解决方案,帮助你解决各种难题。不仅如此,它还能提供编程资源和学习指导,帮助你快速提升编程技能。无论你是初学者还是专业人士,AI智能助手都能成为你的可靠助手,助力你在编程领域取得更大的成就。
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2024 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号