1 Star 0 Fork 0

old-surest/data-collection

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
send_wechat.php 620 Bytes
一键复制 编辑 原始数据 按行查看 历史
surestdeng 提交于 2020-04-13 14:07 . 新增留言功能
<?php
$key = "ef0841e1-62b5-43e1-870e-84815106c68f";
$url = "https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=%s";
$url = sprintf($url, $key);
$box = [
'msgtype' => 'text',
'text' => [
'content' => 'api已更新'
]
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
curl_setopt($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json;charset=utf-8'));
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($box));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$data = curl_exec($ch);
curl_close($ch);
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ar13/data-collection.git
git@gitee.com:ar13/data-collection.git
ar13
data-collection
data-collection
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385