Laravel Scheduler 终于添加 hourlyAt 方法

JellyBool

JellyBool

在 laravel 5.3.29 版本之后,Scheduler 终于添加了 hourlyAt 方法,可以像下面这样来使用:

$schedule->command('nofify:email')->hourlyAt(15);

这样就可以在每个整点的 15 分的时候运行这个 notify:email 的任务了。或者说你也可以在 hourlyAt 前面指定其他的日期,比如:

$schedule->command('nofify:email')

    ->weekdays()

    ->hourlyAt(15);

这样就限定这个任务在工作日的每个整点的 15 分执行了,That‘s Cooooool !

本文由 JellyBool 创作, 转载和引用遵循 署名-非商业性使用 2.5 中国大陆 进行许可。

共有 0 条评论