1 Star 2 Fork 0

祥仔/微信公众号openid获取工具

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.php 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
祥仔 提交于 2022-09-05 14:30 . update index.php.
<?php
// https://gitee.com/xiangzai290
header('Content-type:text');
define("Token", "test"); //后面的可以修改
if (!isset($_GET['echostr'])) {
responseMsg();
}else{
valid();
}
function valid()
{
$echoStr = $_GET["echostr"];
$signature = $_GET["signature"];
$timestamp = $_GET["timestamp"];
$nonce = $_GET["nonce"];
$token = Token;
$tmpArr = array($token, $timestamp, $nonce);
sort($tmpArr, SORT_STRING);
$tmpStr = sha1(implode($tmpArr));
if($tmpStr == $signature){
echo $echoStr;
exit;
}
}
function responseMsg()
{
$postStr = file_get_contents("php://input");
if (!empty($postStr)){
$object = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA);
$xmlTpl = "<xml><ToUserName><![CDATA[%s]]></ToUserName><FromUserName><![CDATA[%s]]></FromUserName><CreateTime>%s</CreateTime><MsgType><![CDATA[text]]></MsgType><Content><![CDATA[%s]]></Content></xml>";
$result = sprintf($xmlTpl, $object->FromUserName, $object->ToUserName, time(), $object->FromUserName);
echo $result;
}else{
exit;
}
}
?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/xiangzai290/getopenid.git
git@gitee.com:xiangzai290/getopenid.git
xiangzai290
getopenid
微信公众号openid获取工具
master

搜索帮助