1 Server酱官网
网址:https://sct.ftqq.com/
进入Server官网使用GitHub账号密码申请secret key。
2 封装发送微信消息函数
在主题function.php中添加以下代码:
/* 通过Server酱(http://sc.ftqq.com/3.version)向个人微信客户端推送消息
text:消息标题
desp:消息内容
key:Server酱推送api secret key
*/
function SendMessageToWeChatByServerJiang( $text , $desp = '' , $key = '你自己的secret key' )
{
$postdata = http_build_query(
array(
'text' => $text,
'desp' => $desp
)
);
$opts = array('http' =>
array(
'method' => 'POST',
'header' => 'Content-type: application/x-www-form-urlencoded',
'content' => $postdata
)
);
$context = stream_context_create($opts);
return $result = file_get_contents('https://sc.ftqq.com/'.$key.'.send', false, $context);
}
3 使用方式
在自己需要使用通知函数的地方调用上述函数:
SendMessageToWeChatByServerJiang('新消息','Hello World');
本文作者:StubbornHuang
版权声明:本文为站长原创文章,如果转载请注明原文链接!
原文标题:WordPress – 通过Server酱发送微信通知给微信
原文链接:https://www.stubbornhuang.com/691/
发布于:2020年02月12日 15:14:00
修改于:2023年06月26日 22:39:13
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论
50