码迷,mamicode.com
首页 > 其他好文 > 详细

Yii2安装任务调度扩展

时间:2017-06-20 17:55:52      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:tab   抽象   ace   class   tor   require   man   vcs   tps   

一、安装扩展

  在安装之前添加仓库到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安装任务调度扩展

标签:tab   抽象   ace   class   tor   require   man   vcs   tps   

原文地址:http://www.cnblogs.com/zhangjianqiang/p/7054919.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!