码迷,mamicode.com
首页 > 微信 > 详细

php微信接口验证写法

时间:2016-02-20 14:32:36      阅读:280      评论:0      收藏:0      [点我收藏+]

标签:

<?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微信接口验证写法

标签:

原文地址:http://www.cnblogs.com/modle-sherlock/p/5203158.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!