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');