php 实现群发表结构,利用php怎么实现一个微信公众号无限群发功能

利用php怎么实现一个微信公众号无限群发功能

发布时间:2021-01-25 17:32:14

来源:亿速云

阅读:66

作者:Leah

今天就跟大家聊聊有关利用php怎么实现一个微信公众号无限群发功能,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。

sendAllMsg.php<?php

interface iSendAllMsg{

function getData($url); //curl 发送get请求

function postData($url,$data); //curl 发送post请求

function getAccessToken();  //在构造方法中已调用该方法来获取access_token,注意它在wx服务器的保存时间7200s

function sendMsgToAll(); //群发消息方法,发送的消息$data 可自行修改

}

class SendAllMsg implements iSendAllMsg{

private $appId;

private $appSecret;

private $access_token;

//

public function __construct($appId, $appSecret) {

$this->appId = $appId;

$this->appSecret = $appSecret;

$this->access_token = $this->getAccessToken();

}

//

function getData($url){

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $url);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

curl_setopt($ch, CURLOPT_HEADER, 0);

curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (compatible; MSIE 5.01; Windows NT 5.0)');

curl_setopt($ch, CURLOPT_ENCODING, 'gzip');

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

$data = curl_exec($ch);

curl_close($ch);

return $data;

}

//

function postData($url,$data){

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $url);

curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);

curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);

curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (compatible; MSIE 5.01; Windows NT 5.0)');

curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);

curl_setopt($ch, CURLOPT_AUTOREFERER, 1);

curl_setopt($ch, CURLOPT_POSTFIELDS, $data);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$tmpInfo = curl_exec($ch);

if (curl_errno($ch)) {

return curl_error($ch);

}

curl_close($ch);

return $tmpInfo;

}

//

function getAccessToken(){

$url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=".$this->appId."&secret=".$this->appSecret;

$res = $this->getData($url);

$jres = json_decode($res,true);

$access_token = $jres['access_token'];

return $access_token;

}

//

private function getUserInfo(){

$url = "https://api.weixin.qq.com/cgi-bin/user/get?access_token=".$this->access_token;

$res = $this->getData($url);

$jres = json_decode($res,true);

//print_r($jres);

$userInfoList = $jres['data']['openid'];

return $userInfoList;

}

function sendMsgToAll(){

$userInfoList = $this->getUserInfo();

$url = "https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token=".$this->access_token;

foreach($userInfoList as $val){

$data = '{

"touser":"'.$val.'",

"msgtype":"text",

"text":

{

"content":"测试一下,抱歉打扰各位"

}

}';

$this->postData($url,$data);

}

}

}

$test = new SendAllMsg("YOURappId","YOURappSecret");

$test->sendMsgToall();

?>

看完上述内容,你们对利用php怎么实现一个微信公众号无限群发功能有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注亿速云行业资讯频道,感谢大家的支持。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值