1 Star 1 Fork 0

ink_qx/wxtest

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
receiveMsg.php 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
ink_qx 提交于 2021-01-25 15:50 . 晚上接收普通消息
<?php
//接收普通消息
require_once('Util.php');
//对传入的xml数据进行处理和转化
$fileContent = file_get_contents("php://input");
//禁止引用外部xml实体
libxml_disable_entity_loader(true);
//先把xml转换为simplexml对象,再把simplexml对象转换成 json,再将 json 转换成数组。
$value_array = json_decode(json_encode(simplexml_load_string($fileContent, 'SimpleXMLElement', LIBXML_NOCDATA)), true);
$typeList = ['text', 'image', 'voice', 'video', 'shortvideo', 'location', 'link'];
$pdo = Util::getConnection();
//查重,如果已有记录就直接回复微信服务器
$sql = "SELECT * FROM msgs WHERE msgid=" . $value_array['MsgId'];
$result = $pdo->query($sql);
$result && exit("已存在,成功");
//存入记录
$valueSqlList = [array_search($value_array['MsgType'], $typeList), $value_array['FromUserName'], $value_array['CreateTime'], $value_array['MsgId'], $value_array['Content']];
$sql = "INSERT INTO `msgs`(type,from_openid,create_time,msgid,content) VALUES('" . implode("','", $valueSqlList) . "')";
$result = $pdo->query($sql);
echo $result ? '成功' : '失败';
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ink_qx/wxtest.git
git@gitee.com:ink_qx/wxtest.git
ink_qx
wxtest
wxtest
master

搜索帮助