2 Star 0 Fork 0

我们都爱笑/wechat

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
songyanfeng.php 542 Bytes
一键复制 编辑 原始数据 按行查看 历史
吃你家饭了么 提交于 2016-10-17 17:41 . add wechat check
<?php
// 1.将timestamp,nonce,token按字典序排序
$nonce = $_GET['nonce'];
$token = 'songyanfengzhenshuai';
$timestamp = $_GET['timestamp'];
$echostr = $_GET['echostr'];
$signature = $_GET['signature'];
// 2.将排序后的三个参数拼接后通过sha1加密
$array = [$timestamp, $nonce, $token];
sort($array);
$tmpstr = implode('', $array);
$tmpstr = sha1($tmpstr);
// 3.将加密后的字符串与signature进行对比,判断该请求是否来自微信
if ($tmpstr == $signature && $echostr) {
echo $echostr;
exit;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/songyanfeng/wechat.git
[email protected]:songyanfeng/wechat.git
songyanfeng
wechat
wechat
master

搜索帮助