这篇文章主要介绍了PHP快速推送微信模板消息,需要的朋友可以参考下
需要给关注用户发送模板消息,由于公众号关注用户比较多,所以采用普通的curl等方式太慢。由于模板消息发送不需要等待微信的结果,所以利用PHP的fsockopen()函数可以达到快速发送的效果。代码如下:
'11111111111111111','template_id' => '111111111111111111','url' => '11111111111111111111','data' => [
'first' => [
'value' => '1111111111111111111','color' => '#173177',],'keyword1' => [
'value' => '111111111111111111','keyword2' => [
'value' => date('Y年m月d日 H:i'),'remark' => [
'value' => '1111111111111111111111111',]
]
];
$access_token = '此处填写自己公众号的access_token';
$params = json_encode($data,JSON_UNESCAPED_UNICODE);
$start_time = microtime(true);
for ($i = 0; $i < 50; $i++) {
$fp = fsockopen('api.weixin.qq.com',80,$error,$errstr,1);
$http = "POST /cgi-bin/message/template/send?access_token={$access_token} HTTP/1.1\r\nHost: api.weixin.qq.com\r\nContent-type: application/x-www-form-urlencoded\r\nContent-Length: " . strlen($params) . "\r\nConnection:close\r\n\r\n$params\r\n\r\n";
fwrite($fp,$http);
fclose($fp);
}
print_r(microtime(true) - $start_time);
上面的代码发送了50条模板消息,所用时间请看运行结果:
0.83637619018555
发送模板消息还可以采用curl,甚至是curl的批量处理方式(多线程),但是相对较快的应该是上述方式。
以上所述是小编给大家介绍的PHP快速推送微信模板消息,希望对大家有所帮助。程序员遇到问题都会上(编程之家jb51.cc)查找问题解答方法!如果觉得站点还不错,随手转发给程序员朋友一下!