semsty / crontab
此包最新版本(dev-master)的许可证信息不可用。
yii2 crontab
dev-master
2018-08-16 13:20 UTC
Requires
- php: >=7.2.0
- yii2tech/crontab: ^1.0@dev
- yiisoft/yii2: ~2.0.15
Requires (Dev)
- phpunit/phpunit: ~7.1.0
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 将每分钟更新一次