25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

SendWxTravelTipsController.php 1.3 KiB

3 yıl önce
1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. /**
  3. * 发送微信支付出行提示
  4. * 1、提前一天的 中午12点发送出行提示
  5. * 2、目前只支持微信支付
  6. * ============================================================================
  7. * * 版权所有 蜘蛛出行 * *
  8. * 网站地址: http://www.zhizhuchuxing.com
  9. * ----------------------------------------------------------------------------
  10. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和
  11. * 使用;不允许对程序代码以任何形式任何目的的再发布。
  12. * ============================================================================
  13. * Author By: 倪宗锋
  14. * PhpStorm SendWxTravelTipsController.php
  15. * Create By 2018/1/30 13:17 $
  16. */
  17. namespace console\controllers;
  18. use common\models\OrderMain;
  19. use common\util\Util;
  20. use yii\console\Controller;
  21. class SendWxTravelTipsController extends Controller
  22. {
  23. /**
  24. * Des:发送酒店出行通知
  25. * Name: actionIndex
  26. * @author 倪宗锋
  27. */
  28. public function actionIndex()
  29. {
  30. $order_main = new OrderMain();
  31. $getSendTravelTipsHotels = $order_main->getSendTravelTipsHotels();
  32. foreach ($getSendTravelTipsHotels as $val) {
  33. $val['type'] = 7;//
  34. Util::sendWxMsg($val);
  35. }
  36. }
  37. }