boxmoe_header_banner_img

Hello! 欢迎来到ACG博客!

加载中

文章导读

【技术分享】WordPress实现自助申请友链功能的Server酱申请通知


avatar
ACG博客官方 2025年3月6日 60

图片展示

审核通知

如果你想及时收到友链申请的提醒,可以通过server酱来实现
若你使用的自助申请代码是我的前两篇教程代码,可直接按照步骤进行
*若使用其他博主的自助申请友链代码,请自行测试通知代码的放置位置
将下列代码复制到博客主题目录的blinks.php文件中的// 表单项数据验证上面:
*将[SENDKEY]内容改成自己SendKey密钥

// server酱 微信通知我
function sc_send(  $text , $desp = '' , $key = '[SENDKEY]'  )
{
    $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://sctapi.ftqq.com/'.$key.'.send', false, $context);

}

感谢您的支持
微信赞赏

微信扫一扫

支付宝赞赏

支付宝扫一扫



评论(0)

查看评论列表

暂无评论


发表评论