如何在周一和周三设置 Laravel 计划作业
How to set up Laravel schedule job on Monday and Wednesday
如何在 Laravel 的自定义日期安排需要 运行 的工作。
eg) Monday and Wednesday only.
想知道它是否有效?
$schedule->command('report:sendEmail')->timezone('America/New_York')->weekdays()->mondays()->wednesdays()->dailyAt('21:30');
这个怎么样。
$schedule->command('report:sendEmail')->timezone('America/New_York')->cron('30 21 * * 1,3');
以上是每周一和周三 9:30 下午运行你的工作的命令。
下面是cron job的格式
# Use the hash sign to prefix a comment
# +---------------- minute (0 - 59)
# | +------------- hour (0 - 23)
# | | +---------- day of month (1 - 31)
# | | | +------- month (1 - 12)
# | | | | +---- day of week (0 - 7) (Sunday=0 or 7)
# | | | | |
# * * * * * command to be executed
#--------------------------------------------------------------------------
我建议您以后使用 http://corntab.com/ 创建 cron 规则。:)
如何在 Laravel 的自定义日期安排需要 运行 的工作。
eg) Monday and Wednesday only.
想知道它是否有效?
$schedule->command('report:sendEmail')->timezone('America/New_York')->weekdays()->mondays()->wednesdays()->dailyAt('21:30');
这个怎么样。
$schedule->command('report:sendEmail')->timezone('America/New_York')->cron('30 21 * * 1,3');
以上是每周一和周三 9:30 下午运行你的工作的命令。
下面是cron job的格式
# Use the hash sign to prefix a comment
# +---------------- minute (0 - 59)
# | +------------- hour (0 - 23)
# | | +---------- day of month (1 - 31)
# | | | +------- month (1 - 12)
# | | | | +---- day of week (0 - 7) (Sunday=0 or 7)
# | | | | |
# * * * * * command to be executed
#--------------------------------------------------------------------------
我建议您以后使用 http://corntab.com/ 创建 cron 规则。:)