用tp5的小伙伴注意了 第一次验证url的时候是可以的,但是到后面关注和回复的时候,查看log发现未定义字段echostr 所以验证接口后面要这样写就可以了。
if(!empty($_GET[echostr])) {
$echostr == $_GET[echostr]
if($tmpstr==$signature && $echostr) {
echo $echostr
exit
}
}else{
$this->repsonMsg
}
亲测可用!
if(!empty($_GET[echostr])) {
$echostr == $_GET[echostr]
if($tmpstr==$signature && $echostr) {
echo $echostr
exit
}
}else{
$this->repsonMsg
}
亲测可用!
2018-02-03
第一次是没弹出关注的提示,后来发现把微信官方文档复制下来的回复模板中空格删除掉就好了。老师讲的没问题,再次慰问微信的母亲。
2018-01-26