开箱即用
<?php
//定义TOKEN密钥
define("TOKEN", "TOKEN");
$wechatObj = new wechatCallbackapi();
//接口验证(验证成功后关闭
//$wechatObj->valid();
//自动回复
$wechatObj->responseMsg();
//开启自动回复
$wechatObj->responseMsg();
class wechatCallbackapi
{
//接口认证
public function valid()
{
//接收随机字符串
$echoStr = $_GET["echostr"];
//进行用户数字签名验证
if($this->checkSignature()){
//如果成功,则返回接受到的随机字符串
echo $echoStr;
exit;
}
}
//定义用户数字签名验证功能
private function checkSignature()
{
//判断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);
//通过字典法进行排序
sort($tmpArr, SORT_STRING);
//把排序后的数组转化为字符串
$tmpStr = implode( $tmpArr );
//通过哈希算法进行加密操作
$tmpStr = sha1( $tmpStr );
//与加密签名进行对比
if( $tmpStr == $signature ){
return true;
}else{
return false;
}
}
//定义自动回复功能
public function responseMsg()
{
//接收用户端发送过来的XML数据
$postStr = $GLOBALS["HTTP_RAW_POST_DATA"];
$template = new template();
//判断XML数据是否为空
if (!empty($postStr)){
libxml_disable_entity_loader(true);
//通过simplexml进行xml解析
$postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA);
//手机端
/** @noinspection PhpUndefinedFieldInspection */
$fromUsername = $postObj->FromUserName;
//微信的公众平台
/** @noinspection PhpUndefinedFieldInspection */
$toUsername = $postObj->ToUserName;
//接收用户发送的关键词
/** @noinspection PhpUndefinedFieldInspection */
$keyword = trim($postObj->Content);//清除空格
//消息类型
/** @noinspection PhpUndefinedFieldInspection */
$msgType = $postObj->MsgType;
//时间类型
/** @noinspection PhpUndefinedFieldInspection */
$event = $postObj->Event;//时间类型,subscribe(订阅)、unsubscribe(取消订阅)
//时间戳
$time = time();
$contentStr = "Hello"; //存储文本消息
$reply = ""; //存储模板
$reply = $template->main("text");
//回复类型,如果为"text",代表文本类型
$msgType = "text";
//格式化字符串
$resultStr = sprintf($reply, $fromUsername, $toUsername, $time, $msgType, $contentStr);
//把XML数据返回手机端
echo $resultStr;
}else{
echo "";
exit;
}
}
}
1 条评论
你的文章总是能给我带来欢乐,谢谢你! http://www.55baobei.com/8nEajoynHu.html