php實現(xiàn)發(fā)送微信模板消息的方法
來源:易賢網(wǎng) 閱讀:752 次 日期:2015-03-09 15:25:07
溫馨提示:易賢網(wǎng)小編為您整理了“php實現(xiàn)發(fā)送微信模板消息的方法”,方便廣大網(wǎng)友查閱!

這篇文章主要介紹了php實現(xiàn)發(fā)送微信模板消息的方法,實例分析了php操作curl及自定義模板消息的實現(xiàn)技巧,具有一定參考借鑒價值,需要的朋友可以參考下

本文實例講述了php實現(xiàn)發(fā)送微信模板消息的方法。分享給大家供大家參考。具體如下:

該方法基于thinkphp實現(xiàn)實現(xiàn),具體OrderPush.class.php文件如下:

代碼如下:

<?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); //運行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 = "=" . $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 = "=" . $this->accessToken;

$dataRes = $this->request_post($url, urldecode($json_template));

if ($dataRes['errcode'] == 0) {

return true;

} else {

return false;

}

}

}

希望本文所述對大家的php程序設(shè)計有所幫助。

更多信息請查看IT技術(shù)專欄

更多信息請查看網(wǎng)絡(luò)編程
易賢網(wǎng)手機網(wǎng)站地址:php實現(xiàn)發(fā)送微信模板消息的方法
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報警專用圖標(biāo)