登录  /  注册

微信单图文、多图文推送、列表中排序

黄舟
发布: 2016-12-30 10:35:36
原创
2053人浏览过

<?php

/**

* @author yinhuiying(改于)

* @since version - 2014-10-31

* @deprecated version - 2014-10-31

* 腾讯客服接口

*/

class ServiceModel extends Model{



/**

* 客服接口(高级接口)

* @param int $uid

* @param String openid 微信唯一标识

* @param String array 回复数组内容

* @param int type 类型 1表示文字回复 2表示图文回复

* */

public function Service($openid,$array,$type){

switch($type){

case 1: $json = &#39;{

"touser":"&#39;.strval($openid).&#39;",

"msgtype":"text",

"text":

{

"content":"&#39;.$array[&#39;content&#39;].&#39;"

}

}&#39;;

$this->postService($json);

break;

case 2: $json = &#39;{

"touser":"OPENID",

"msgtype":"image",

"image":

{

"media_id":"MEDIA_ID"

}

}&#39;;

$this->postService($json);

break;

case 3: $json = &#39;{

"touser":"OPENID",

"msgtype":"voice",

"voice":

{

"media_id":"MEDIA_ID"

}

}&#39;;

$this->postService($json);

break;

case 4: $json = &#39;{

"touser":"OPENID",

"msgtype":"video",

"video":

{

"media_id":"MEDIA_ID",

"title":"TITLE",

"description":"DESCRIPTION"

}

}&#39;;

$this->postService($json);

break;

case 5: $json = &#39;{

"touser":"OPENID",

"msgtype":"music",

"music":

{

"title":"MUSIC_TITLE",

"description":"MUSIC_DESCRIPTION",

"musicurl":"MUSIC_URL",

"hqmusicurl":"HQ_MUSIC_URL",

"thumb_media_id":"THUMB_MEDIA_ID"

}

}&#39;;

$this->postService($json);

break;

case 6: $json = &#39;{

"touser":"OPENID",

"msgtype":"news",

"news":{

"articles": [

{

"title":"&#39;.$array[&#39;title1&#39;].&#39;",

"description":"&#39;.$array[&#39;description1&#39;].&#39;",

"url":"&#39;.$array[&#39;url1&#39;].&#39;",

"picurl":"&#39;.$array[&#39;picurl1&#39;].&#39;"

},

{

"title":"&#39;.$array[&#39;title2&#39;].&#39;",

"description":"&#39;.$array[&#39;description2&#39;].&#39;",

"url":"&#39;.$array[&#39;url2&#39;].&#39;",

"picurl":"&#39;.$array[&#39;picurl2&#39;].&#39;"

},

{

"title":"&#39;.$array[&#39;title3&#39;].&#39;",

"description":"&#39;.$array[&#39;description3&#39;].&#39;",

"url":"&#39;.$array[&#39;url3&#39;].&#39;",

"picurl":"&#39;.$array[&#39;picurl3&#39;].&#39;"

}

]

}

}&#39;;

$this->postService($json);

break;

}

}



public function postService($json){

$access_token = model(&#39;WeixinInterface&#39;)->getACCESS_TOKEN(330);

//Log :: write("客服接口获得的accessToken是".$access_token, log :: INFO);

$url = &#39;https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token=&#39;.$access_token;

model(&#39;WeixinInterface&#39;)->getHttpResponsePOST($url,$json);



}



}

?>

---------------或者---------------------

MODEL中

public function Service($uid,$json){

self::$wxInterFace = M(&#39;WXInterFace&#39;,&#39;wxmenu&#39;);

$access_token = $this->getACCESS_TOKEN($uid);

$url = &#39;https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token=&#39;.$access_token;

$this->getHttpResponsePOST($url,$json);

}

在ACTION中 

//图文回复

public function msgReturn(){

$json = &#39;{

"touser":"&#39;.strval($_SESSION[&#39;oauthopenid&#39;]).&#39;",

"msgtype":"news",

"news":{

"articles": [

{

"title":"大华双十一购房狂欢节,团购优惠等你来!",

"description":"",

"url":"http://dc.exweixin.com/index.php?app=Dhcheap&mod=Index&act=index&aid=11",

"picurl":"http://dc.exweixin.com/data/upload/2014/1031/10/top_img_1.png"

},

{

"title":"一口价房源再享折上折",

"description":"",

"url":"http://dc.exweixin.com/index.php?app=RedPacket&mod=Coupon&act=welcome&uid=330",

"picurl":"http://dc.exweixin.com/data/upload/2014/1031/10/fixed_1.jpg"

},

{

"title":"我要抢红包",

"description":"",

"url":"http://dc.exweixin.com/index.php?app=redPacket&mod=Welcome&act=welcome&uid=330",

"picurl":"http://dc.exweixin.com/data/upload/2014/1031/10/rob_1.jpg"

},

{

"title":"土豪排行榜",

"description":"",

"url":"http://dc.exweixin.com/index.php?app=RedPacket&mod=Index&act=ranking",

"picurl":"http://dc.exweixin.com/data/upload/2014/1031/10/ranking_1.jpg"

},

{

"title":"我的钱包",

"description":"",

"url":"http://dc.exweixin.com/index.php?app=RedPacket&mod=Index&act=person&openid=&#39;.strval($_SESSION[&#39;oauthopenid&#39;]).&#39;",

"picurl":"http://dc.exweixin.com/data/upload/2014/1031/10/packet_1.jpg"

}

]

}

}&#39;;



//调用客服接口

$uid=330;

M(&#39;CustomService&#39;,&#39;wxmenu&#39;)->Service($uid,$json);

}

//----------------------------------//

列表中排序、效果

1、

2、

3、

代码

<li class="count">{$i+$n}</li>
登录后复制

 以上就是微信单图文、多图文推送、列表中排序的内容,更多相关内容请关注php中文网(www.php.cn)!

智能AI问答
PHP中文网智能助手能迅速回答你的编程问题,提供实时的代码和解决方案,帮助你解决各种难题。不仅如此,它还能提供编程资源和学习指导,帮助你快速提升编程技能。无论你是初学者还是专业人士,AI智能助手都能成为你的可靠助手,助力你在编程领域取得更大的成就。
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
关于CSS思维导图的课件在哪? 课件
凡人来自于2024-04-16 10:10:18
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2024 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号