semsty/crontab

此包最新版本(dev-master)的许可证信息不可用。

yii2 crontab

安装数量: 1,080

依赖者: 0

建议者: 0

安全: 0

星标: 0

关注者: 1

分支: 0

开放问题: 0

类型:项目

dev-master 2018-08-16 13:20 UTC

This package is not auto-updated.

Last update: 2024-09-21 11:31:05 UTC


README

Yii2 crontab

添加到组件

...
    'schedule' => [
        'class' => \semsty\crontab\Component::class,
        'init' => [
            'example' => [
                '* * * * *',
                'echo Hello >> /tmp/world'
            ]
        ]
    ]
...

使用方法

./yii schedule/add example '* * * * *' 'echo Hello >> /tmp/world'
Yii::$app->schedule->add('example', '* * * * *', 'echo Hello >> /tmp/world')

crontab 将每分钟更新一次