Queuetasks.php 663 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2017 https://www.sapixx.com All rights reserved.
  4. * @license Licensed (http://www.apache.org/licenses/LICENSE-2.0).
  5. * @author pillar<ltmn@qq.com>
  6. * 数据库队列与定时任务
  7. */
  8. namespace app\system\controller;
  9. use think\Controller;
  10. use app\common\facade\Inform;
  11. class Queuetasks extends Controller {
  12. /**
  13. * 微信定时模板消息
  14. * 通过第三方网站监控访问或通过Linux定时任务访问一下网址即可
  15. * //***.com/system/queuetasks/inform
  16. */
  17. public function inform(){
  18. $rel = Inform::smsQueue();
  19. return $rel ? 'SUCCESS' : 'FAIL';
  20. }
  21. }