微信公众号开发

小程序 之客服消息

本文主要是介绍小程序 之客服消息,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

一、效果图

 二、代码示例

require DT_ROOT . '/api/a/wx.php';
$wx = new wx($db);
$wx_small = $db->get_one("select * from {$DT_PRE}wx_small_user where username='{$username}'");
if ($wx_small['openid']) {
    $data = array(
        'touser' => $wx_small['openid'],
        'msgtype' => 'text',
        'text' => array(
            'content' => $content
        )
    );
    $url = 'https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token='.$wx->access_token;
    $result = $wx->curl_request($url, json_encode($data), 'post');
    var_dump($result);
}

 

这篇关于小程序 之客服消息的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!