码迷,mamicode.com
首页 > 微信 > 详细

微信发送模板消息

时间:2015-08-18 18:34:58      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:

// 发送模板消息
function send_template_message($data,$appId,$appSecret){
  $access_token = get_access_token($appId,$appSecret);
  $url = ‘https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=‘.$access_token;
  $ch = curl_init();
  curl_setopt($ch, CURLOPT_POST, 1);
  curl_setopt($ch, CURLOPT_URL, $url);
  curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
  curl_setopt($ch, CURLOPT_HTTPHEADER, array(‘Content-Type: application/json; charset=utf-8‘,‘Content-Length: ‘ . strlen($data)));
  ob_start();
  curl_exec($ch);
  $return_content = ob_get_contents();
  ob_end_clean();
  $return_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
  return array($return_code, $return_content);
}

微信发送模板消息

标签:

原文地址:http://www.cnblogs.com/zzw6105php/p/4739772.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!