头像

php微信实现给指定用户发送模板消

2018-05-07 18:01:52 来源:PHP代码   浏览()   评论 ( 0 )   

对用户发送模板消息

微信实现给指定用户发送模板消息

方法

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 '发送成功';


标签: php
声明:转载请注明来源(PHP代码)并保留原文链接:http://www.phpdaima.com//master-106.html
广告不存在
评论0

后面还有条评论,点击查看>>

温馨提示:为规范评论内容,垃圾评论一律封号...