You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

61 lines
2.6 KiB

  1. <?php
  2. /**
  3. * 微信消息推送配置文件 请注意编码格式 一定要使用utf8
  4. * 参数说明:
  5. * type 推送消息类型 分为:news:图文 video:视频 img:图片 voice:语音 这四类以数组来配置 文字类型则直接配字符串就行
  6. * id 素材ID 对应微信公众平台的素材 如要知道各个素材请访问 xxx.xxx.xx/module/wxInterface/getMedia?type=xxx
  7. *title 标题 只有视频才需要
  8. *des 简介 只有视频才需要
  9. *function 执行方法 当推送该消息时就会执行 WxDoFunction.php 中的该方法 如欢迎语时就会触发添加用户 addUser
  10. * ============================================================================
  11. * * 版权所有 蜘蛛行 * *
  12. * 网站地址: http://www.zhizhuchuxing.com
  13. * ----------------------------------------------------------------------------
  14. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和
  15. * 使用;不允许对程序代码以任何形式任何目的的再发布。
  16. * ============================================================================
  17. * Author By: 倪宗锋
  18. * PhpStorm WxText.config.php
  19. * Create By 2017/1/4 15:09 $
  20. */
  21. return array(
  22. 'default' => '亲,感谢您对千岛湖旅游集散中心的支持,点击预订即可订购产品,如有问题请第一时间联系我们!官方电话400-105-1078',
  23. '视频' => array(//小视频
  24. 'type' => 'video',//类型 视频
  25. 'id' => 'FGV6tMS6FSixJwrxoMgyABc3P_bfmnEt8qUV3-J_M1s',//media_id
  26. 'title' => '小视频',//标题
  27. 'des' => '笑笑小视频'//简介
  28. ),
  29. '音乐' => array(
  30. 'type' => 'voice',
  31. 'id' => 'FGV6tMS6FSixJwrxoMgyAAitkX-PSTZ5LWDyPdlJuGg'
  32. ),
  33. '图片' => array(
  34. 'type' => 'img',
  35. 'id' => 'W1Po9FbHCDVcAZS-XYBWuJxBKRG2FbvqetpfRVw9E98'
  36. ),
  37. '客服' => '客服热线:021-52218088',
  38. 'test' => array(
  39. 'text' => '蜘蛛分销测试fx.zhizhuchuxing.cn
  40. <a href="http://fx.zhizhuchuxing.cn/web/fx/reserve_prod.html">出行预订</a>
  41. <a href="http://fx.zhizhuchuxing.cn/web/fx/eticket.html"> 二维码 </a>
  42. <a href="http://fx.zhizhuchuxing.cn/web/fx/my_commission.html"> 我的佣金</a>
  43. <a href="http://fx.zhizhuchuxing.cn/web/shop/reserve_prod.html"> C端出行预订</a>
  44. 千岛湖分销分销测试qdhfx.zhizhuchuxing.cn
  45. <a href="http://qdhfx.zhizhuchuxing.cn/web/fx/reserve_prod.html">出行预订</a>
  46. <a href="http://qdhfx.zhizhuchuxing.cn/web/fx/eticket.html"> 二维码 </a>
  47. <a href="http://qdhfx.zhizhuchuxing.cn/web/fx/my_commission.html"> 我的佣金</a>
  48. <a href="http://qdhfx.zhizhuchuxing.cn/web/shop/reserve_prod.html"> C端出行预订</a>
  49. ',
  50. )
  51. );