微信公众号接受微信端传来的信息并判断

public function index()
{
    if (isset($_GET['echostr'])) {
        //1.将timestamp,nonce,toke按字典顺序排序
        $timestamp = $_GET['timestamp'];
        $nonce = $_GET['nonce'];
        $token = 'imooc';
        $signature = $_GET['signature'];
        $array = array($timestamp, $nonce, $token);
        sort($array);
        //2.将排序后的三个参数拼接之后用sha1加密
        //3.将加密后的字符串与signature进行对比,判断该请求是否来自微信
        if (sha1(implode('', $array)) == $signature && $_GET['echostr']) {
            //第一次接入微信api接口的时候
            header('content-type:text');
            echo $_GET['echostr'];
            exit;
        }
    } else {
        $this->responseMsg();
    }

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值