php微信接口验证写法

<?php
    //获得接口认证
    $timestamp = $_GET[timestamp];
    $nonce = $_GET[nonce];
    $token = weixin;
    $signature = $_GET[signature];
    //将参数字典化排序
    $tmpArr = array($timestamp,$nonce,$token);
    sort($tmpArr);
    $judgeArr = implode(‘‘,$tmpArr);
    $judge = sha1($judgeArr);
    //判断是否符合
    if($judge == $signature)
    {
        echo $_GET[echostr];
        exit;
    }

 

php微信接口验证写法

上一篇:asp.net mvc 5 微信接入VB版 - 获取AccessToken


下一篇:网页闯关游戏(riddle webgame)--仿微信聊天的前端页面设计和难点