php實現(xiàn)發(fā)送微信模板消息的方法
本文實例講述了php實現(xiàn)發(fā)送微信模板消息的方法。分享給大家供大家參考。具體如下:
該方法基于thinkphp實現(xiàn)實現(xiàn),具體OrderPush.class.php文件如下:
namespace Org\Weixin;
/**
* Created by PhpStorm.
* User: StandOpen
* Date: 15-1-7
* Time: 9:41
*/
class OrderPush
{
protected $appid;
protected $secrect;
protected $accessToken;
function __construct($appid, $secrect)
{
$this->appid = $appid;
$this->secrect = $secrect;
$this->accessToken = $this->getToken($appid, $secrect);
}
/**
* 發(fā)送post請求
* @param string $url
* @param string $param
* @return bool|mixed
*/
function request_post($url = '', $param = '')
{
if (empty($url) || empty($param)) {
return false;
}
$postUrl = $url;
$curlPost = $param;
$ch = curl_init(); //初始化curl
curl_setopt($ch, CURLOPT_URL, $postUrl); //抓取指定網(wǎng)頁
curl_setopt($ch, CURLOPT_HEADER, 0); //設(shè)置header
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //要求結(jié)果為字符串且輸出到屏幕上
curl_setopt($ch, CURLOPT_POST, 1); //post提交方式
curl_setopt($ch, CURLOPT_POSTFIELDS, $curlPost);
$data = curl_exec($ch); //運(yùn)行curl
curl_close($ch);
return $data;
}
/**
* 發(fā)送get請求
* @param string $url
* @return bool|mixed
*/
function request_get($url = '')
{
if (empty($url)) {
return false;
}
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
/**
* @param $appid
* @param $appsecret
* @return mixed
* 獲取token
*/
protected function getToken($appid, $appsecret)
{
if (S($appid)) {
$access_token = S($appid);
} else {
$url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=" . $appid . "&secret=" . $appsecret;
$token = $this->request_get($url);
$token = json_decode(stripslashes($token));
$arr = json_decode(json_encode($token), true);
$access_token = $arr['access_token'];
S($appid, $access_token, 720);
}
return $access_token;
}
/**
* 發(fā)送自定義的模板消息
* @param $touser
* @param $template_id
* @param $url
* @param $data
* @param string $topcolor
* @return bool
*/
public function doSend($touser, $template_id, $url, $data, $topcolor = '#7B68EE')
{
/*
* data=>array(
'first'=>array('value'=>urlencode("您好,您已購買成功"),'color'=>"#743A3A"),
'name'=>array('value'=>urlencode("商品信息:微時代電影票"),'color'=>'#EEEEEE'),
'remark'=>array('value'=>urlencode('永久有效!密碼為:1231313'),'color'=>'#FFFFFF'),
)
*/
$template = array(
'touser' => $touser,
'template_id' => $template_id,
'url' => $url,
'topcolor' => $topcolor,
'data' => $data
);
$json_template = json_encode($template);
$url = "https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=" . $this->accessToken;
$dataRes = $this->request_post($url, urldecode($json_template));
if ($dataRes['errcode'] == 0) {
return true;
} else {
return false;
}
}
}
希望本文所述對大家的php程序設(shè)計有所幫助。
- php微信公眾號開發(fā)模式詳解
- php 微信公眾平臺開發(fā)模式實現(xiàn)多客服的實例代碼
- PHP微信公眾號自動發(fā)送紅包API
- 關(guān)于php微信訂閱號開發(fā)之token驗證后自動發(fā)送消息給訂閱號但是沒有消息返回的問題
- PHP實現(xiàn)微信模擬登陸并給用戶發(fā)送消息的方法【文字,圖片,圖文】
- php版微信公眾平臺實現(xiàn)預(yù)約提交后發(fā)送email的方法
- 驗證token、回復(fù)圖文\文本、推送消息的實用微信類php代碼
- PHP memcache在微信公眾平臺的應(yīng)用方法示例
- PHP實現(xiàn)微信公眾號企業(yè)號自定義菜單接口示例
- 基于php的微信公眾平臺開發(fā)入門實例
- PHP使用微信開發(fā)模式實現(xiàn)搜索已發(fā)送圖文及匹配關(guān)鍵字回復(fù)的方法
相關(guān)文章
php采用curl模仿登錄人人網(wǎng)發(fā)布動態(tài)的方法
這篇文章主要介紹了php采用curl模仿登錄人人網(wǎng)發(fā)布動態(tài)的方法,分析了curl登陸人人網(wǎng)的原理與具體方法,非常具有實用價值,需要的朋友可以參考下2014-11-11在MongoDB中模擬Auto Increment的php代碼
MySQL用戶多半都有Auto Increment情結(jié),不過MongoDB缺省并沒有實現(xiàn),所以需要模擬一下,編程語言以PHP為例2011-03-03PHP實現(xiàn)表單提交數(shù)據(jù)的驗證處理功能【防SQL注入和XSS攻擊等】
這篇文章主要介紹了PHP實現(xiàn)表單提交數(shù)據(jù)的驗證處理功能,可實現(xiàn)防SQL注入和XSS攻擊等,涉及php字符處理、編碼轉(zhuǎn)換相關(guān)操作技巧,需要的朋友可以參考下2017-07-07phpstorm配置Xdebug進(jìn)行調(diào)試PHP教程
這篇文章主要介紹了使用phpstorm+Xdebug 調(diào)試PHP教程,需要的朋友可以參考下2014-12-12php實現(xiàn)從上傳文件創(chuàng)建縮略圖的方法
這篇文章主要介紹了php實現(xiàn)從上傳文件創(chuàng)建縮略圖的方法,涉及php操作上傳文件及圖片操作的技巧,具有一定參考借鑒價值,需要的朋友可以參考下2015-04-04