为了账号安全,请及时绑定邮箱和手机立即绑定

有大神知道我这个关注之后没反应是什么情况

https://img1.sycdn.imooc.com//5cc126ce00012d4108910677.jpg

public function reponseMsg(){

// 获取到微信推送过来post数据(xml格式)

$postArr = file_get_contents('php://input');

libxml_disable_entity_loader(true);

// 处理消息类型,并设置回复类型和内容

$postObj = simplexml_load_string($postArr);

//判断该数据包是否是订阅的事件推送

if(strtolower($postObj->MsgType) == 'event'){

//如果是关注 subscribe 事件

if(strtolower($postObj->Event == 'subscribe')){

//回复用户消息(纯文本格式)

$toUser   = $postObj->FromUserName;

$fromUser = $postObj->ToUserName;

$time     = time();

$msgType  = 'text';

$content  = '欢迎关注小葱的微信公众账号';

$template = "<xml>

                           <ToUserName><![CDATA[%s]]></ToUserName>

                           <FromUserName><![CDATA[%s]]></FromUserName>

                           <CreateTime>%s</CreateTime>

                           <MsgType><![CDATA[%s]]></MsgType>

                           <Content><![CDATA[%s]]></Content>

                           </xml>";

$info     = sprintf($template, $toUser, $fromUser, $time, $msgType, $content);

echo $info;

}

}

}



正在回答

1 回答

函数有没有被调用

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

有大神知道我这个关注之后没反应是什么情况

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信