codecamp

Laravel 8 配置 Cron 定时计划

Laravel 提供了一种很方便的设置 定时计划作业 的方式,只需每分钟运行一次 schedule:run Artisan 命令。scheduler:run 命令将根据您在 App\Console\Kernel 类中定义的计划来决定运行哪个作业。

如果您想要在 Homestead 站点中运行 schedule:run 命令,可在定义站点时将 schedule 选项置为 true

sites:
    - map: homestead.test
      to: /home/vagrant/project1/public
      schedule: true 

站点的 Cron 作业定义在虚拟机中的 /etc/cron.d 目录中。


Laravel 8 通配符 SSL
Laravel 8 配置 Mailhog
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

Laravel 8 入门指南

Laravel 8 基础功能

Laravel 8 前端开发

Laravel 8 安全相关

Laravel 8 综合话题

数据库

Eloquent ORM

测试相关

官方拓展包

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }