Blogger Information
Blog 28
fans 0
comment 0
visits 16604
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
微信公众号开发
植树青年小江同志的博客
Original
860 people have browsed it


有道云笔记-微信公众号开发

实例

public static function valid()
    {
        $signature = input('get.signature');
        $timestamp = input('get.timestamp');
        $nonce = input('get.nonce');
        $echostr = input('get.echostr');
        $token = config('app.weixin_token');

        $tmpArr = array($timestamp, $nonce, $token);
        sort($tmpArr, SORT_STRING); // 数组排序
        $str = implode($tmpArr); //implode 拼接字符串
        return sha1($str) == $signature ? true : false; // 需要进行 sha1 加密
    }

运行实例 »

点击 "运行实例" 按钮查看在线实例

微信图片_20180617203544.jpg微信图片_20180617203551.jpg微信图片_20180617203652.jpg微信图片_20180617203656.jpg

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post