对用户发送模板消息
微信实现给指定用户发送模板消息
原文链接:http://www.580bang.com/?post=8方法
function http_request($url,$data=array()){
$ch = curl_init();
curl_setopt($ch, curlopt_url, $url);
curl_setopt($ch, curlopt_returntransfer, 1);
curl_setopt($ch, curlopt_ssl_verifypeer, false);
curl_setopt($ch, curlopt_ssl_verifyhost, false);
// post数据
curl_setopt($ch, curlopt_post, 1);
// 把post的变量加上
curl_setopt($ch, curlopt_postfields, $data);
$output = curl_exec($ch);
curl_close($ch);
return $output;
}代码$json_token=http_request(https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=.c('wx_appid').&secret=.c('wx_secret'));
$access_token=json_decode($json_token,true);
//获得access_token
$this->access_token=$access_token[access_token];
//echo $this->access_token;exit;
//模板消息
$template=array(
'touser'=>指定用户openid,
'template_id'=>模板代码,
'url'=>链接地址,
'topcolor'=>#7b68ee,
'data'=>array(
'first'=>array('value'=>urlencode($mcsinfo['mcs_name'].您好,您有新的订单),'color'=>#ff0000),
'keynote1'=>array('value'=>urlencode(date(y-m-d h:i:s)),'color'=>'#ff0000'),
'keynote2'=>array('value'=>urlencode('这是测试'),'color'=>'#ff0000'),
'keynote3'=>array('value'=>urlencode('这是测试'),'color'=>'#ff0000'),
'keynote4'=>array('value'=>urlencode('这是测试'),'color'=>'#ff0000'),
'remark'=>array('value'=>urlencode('这是测试'),'color'=>'#ff0000'), )
);
$json_template=json_encode($template);
//echo $json_template;
//echo $this->access_token;
$url=https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=.$this->access_token;
$res=http_request($url,urldecode($json_template));
if ($res[errcode]==0) echo '发送成功';
ad:真正免费,域名+虚机+企业邮箱=0元