|
- <?php
- /**
- * 微信消息推送配置文件 请注意编码格式 一定要使用utf8
- * 参数说明:
- * type 推送消息类型 分为:news:图文 video:视频 img:图片 voice:语音 这四类以数组来配置 文字类型则直接配字符串就行
- * id 素材ID 对应微信公众平台的素材 如要知道各个素材请访问 xxx.xxx.xx/module/wxInterface/getMedia?type=xxx
- *title 标题 只有视频才需要
- *des 简介 只有视频才需要
- *function 执行方法 当推送该消息时就会执行 WxDoFunction.php 中的该方法 如欢迎语时就会触发添加用户 addUser
- * ============================================================================
- * * 版权所有 蜘蛛行 * *
- * 网站地址: http://www.zhizhuchuxing.com
- * ----------------------------------------------------------------------------
- * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和
- * 使用;不允许对程序代码以任何形式任何目的的再发布。
- * ============================================================================
- * Author By: 倪宗锋
- * PhpStorm WxText.config.php
- * Create By 2017/1/4 15:09 $
- */
- return array(
- 'default' => '您的问题已经光速飞向客服,请耐心等待我们的回复,谢谢~',
- '视频' => array(//小视频
- 'type' => 'video',//类型 视频
- 'id' => 'FGV6tMS6FSixJwrxoMgyABc3P_bfmnEt8qUV3-J_M1s',//media_id
- 'title' => '小视频',//标题
- 'des' => '笑笑小视频'//简介
- ),
- '音乐' => array(
- 'type' => 'voice',
- 'id' => 'FGV6tMS6FSixJwrxoMgyAAitkX-PSTZ5LWDyPdlJuGg'
- ),
- '图片' => array(
- 'type' => 'img',
- 'id' => 'W1Po9FbHCDVcAZS-XYBWuJxBKRG2FbvqetpfRVw9E98'
- ),
- '客服' => '客服热线:021-52218088',
- 'test' => array(
- 'text' => '蜘蛛分销测试fx.zhizhuchuxing.cn
-
- <a href="http://fx.zhizhuchuxing.cn/web/fx/reserve_prod.html">出行预订</a>
-
- <a href="http://fx.zhizhuchuxing.cn/web/fx/eticket.html"> 二维码 </a>
-
- <a href="http://fx.zhizhuchuxing.cn/web/fx/my_commission.html"> 我的佣金</a>
-
- <a href="http://fx.zhizhuchuxing.cn/web/shop/reserve_prod.html"> C端出行预订</a>
-
- 千岛湖分销分销测试qdhfx.zhizhuchuxing.cn
-
- <a href="http://qdhfx.zhizhuchuxing.cn/web/fx/reserve_prod.html">出行预订</a>
-
- <a href="http://qdhfx.zhizhuchuxing.cn/web/fx/eticket.html"> 二维码 </a>
-
- <a href="http://qdhfx.zhizhuchuxing.cn/web/fx/my_commission.html"> 我的佣金</a>
-
- <a href="http://qdhfx.zhizhuchuxing.cn/web/shop/reserve_prod.html"> C端出行预订</a>
- ',
- )
- );
|