Yii2安装任务调度扩展

Posted Mr-Qiang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Yii2安装任务调度扩展相关的知识,希望对你有一定的参考价值。

一、安装扩展

  在安装之前添加仓库到composer.json文件中

  "repositories": [{"type": "vcs", "url": "https://git.oschina.net/zjq528/yii2-cron.git"}],

 在项目的根目录下运行composer命令
 composer require webjson/yii2-cron

一、使用

<?php
namespace console\controllers;

use webjson\cron\ScheduleController;

class TestController extends ScheduleController {

  public function actionRun()
  {
    // 每小时执行一次 hello/index 命令
    $this->command(‘hello/index‘)->everyHour();
  }
}

ScheduleController是一个抽象类,里面有一个抽象方法 actionRun 这里就放要定时执行的任务

最后在crontab里面添加

* * * * * php yii test/run

 






以上是关于Yii2安装任务调度扩展的主要内容,如果未能解决你的问题,请参考以下文章

手动安装yii2.0-redis扩展

如何使用 Yii2 的 PayPal 扩展在 yii2 中集成支付网关

手动安装 yii2-redis 扩展

手动安装 yii2-redis 扩展

不使用 Composer 手动安装 Yii2 扩展

工作流任务调度系统--DolphinSchedule-1.3.6 window 安装配置