当前位置:首页 > PHP教程 > php应用 > 列表

php实现发送微信模板消息的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-15 22:03:35 浏览: 评论:0 

这篇文章主要介绍了php实现发送微信模板消息的方法,实例分析了php操作curl及自定义模板消息的实现技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了php实现发送微信模板消息的方法。分享给大家供大家参考。具体如下:

该方法基于thinkphp实现实现,具体OrderPush.class.php文件如下:

  1. <?php 
  2. namespace Org\Weixin; 
  3. /** 
  4.  * Created by PhpStorm. 
  5.  * User: StandOpen 
  6.  * Date: 15-1-7 
  7.  * Time: 9:41 
  8.  */ 
  9. class OrderPush 
  10.     protected $appid
  11.     protected $secrect
  12.     protected $accessToken
  13.     function  __construct($appid$secrect
  14.     { 
  15.         $this->appid = $appid
  16.         $this->secrect = $secrect
  17.         $this->accessToken = $this->getToken($appid$secrect); 
  18.     } 
  19.     /** 
  20.      * 发送post请求 
  21.      * @param string $url 
  22.      * @param string $param 
  23.      * @return bool|mixed 
  24.      */ 
  25.     function request_post($url = ''$param = ''
  26.     { 
  27.         if (emptyempty($url) || emptyempty($param)) { 
  28.             return false; 
  29.         } 
  30.         $postUrl = $url
  31.         $curlPost = $param
  32.         $ch = curl_init(); //初始化curl 
  33.         curl_setopt($ch, CURLOPT_URL, $postUrl); //抓取指定网页 
  34.         curl_setopt($ch, CURLOPT_HEADER, 0); //设置header 
  35.         curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //要求结果为字符串且输出到屏幕上 
  36.         curl_setopt($ch, CURLOPT_POST, 1); //post提交方式 
  37.         curl_setopt($ch, CURLOPT_POSTFIELDS, $curlPost); 
  38.         $data = curl_exec($ch); //运行curl 
  39.         curl_close($ch); 
  40.         return $data
  41.     } 
  42.     /** 
  43.      * 发送get请求 
  44.      * @param string $url 
  45.      * @return bool|mixed 
  46.      */ 
  47.     function request_get($url = ''
  48.     { 
  49.         if (emptyempty($url)) { 
  50.             return false; 
  51.         } 
  52.         $ch = curl_init(); 
  53.         curl_setopt($ch, CURLOPT_URL, $url); 
  54.         curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
  55.         $data = curl_exec($ch); 
  56.         curl_close($ch); 
  57.         return $data
  58.     } 
  59.     /** 
  60.      * @param $appid 
  61.      * @param $appsecret 
  62.      * @return mixed 
  63.      * 获取token 
  64.      */ 
  65.     protected function getToken($appid$appsecret
  66.     { 
  67.         if (S($appid)) { 
  68.             $access_token = S($appid); 
  69.         } else { 
  70.             $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=" . $appid . "&secret=" . $appsecret
  71.             $token = $this->request_get($url); 
  72.             $token = json_decode(stripslashes($token)); 
  73.             $arr = json_decode(json_encode($token), true); 
  74.             $access_token = $arr['access_token']; 
  75.             S($appid$access_token, 720); 
  76.         } 
  77.         return $access_token
  78.     } 
  79.     /** 
  80.      * 发送自定义的模板消息 
  81.      * @param $touser 
  82.      * @param $template_id 
  83.      * @param $url 
  84.      * @param $data 
  85.      * @param string $topcolor 
  86.      * @return bool 
  87.      */ 
  88.     public function doSend($touser$template_id$url$data$topcolor = '#7B68EE'
  89.     { 
  90.         /* 
  91.          * data=>array( 
  92.                 'first'=>array('value'=>urlencode("您好,您已购买成功"),'color'=>"#743A3A"), 
  93.                 'name'=>array('value'=>urlencode("商品信息:微时代电影票"),'color'=>'#EEEEEE'), 
  94.                 'remark'=>array('value'=>urlencode('永久有效!密码为:1231313'),'color'=>'#FFFFFF'), 
  95.             ) 
  96.          */ 
  97.         $template = array
  98.             'touser' => $touser
  99.             'template_id' => $template_id
  100.             'url' => $url
  101.             'topcolor' => $topcolor
  102.             'data' => $data 
  103.         ); 
  104.         $json_template = json_encode($template); 
  105.         $url = "https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=" . $this->accessToken; 
  106.         $dataRes = $this->request_post($url, urldecode($json_template)); 
  107.         if ($dataRes['errcode'] == 0) { 
  108.             return true; 
  109.         } else { 
  110.             return false; 
  111.         } 
  112.     } 
  113. }

Tags: php发送微信模板

分享到: