任何人都可以告诉我,我需要在每个周末自动运行的Laravel 5.4中创建一个时间表。
首先,我在/app/Console/Commands/
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use DB;
class FollowAdvisor extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'follow:advisor';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Command description';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
//
DB::table('followers')->delete();
$this->info('All inactive users are deleted successfully');
}
}
然后我在位于/api/app/Console/
<?php
namespace App\Console;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
use DB;
use App\Model\Follow;
class Kernel extends ConsoleKernel
{
protected $commands = [
Commands\FollowAdvisor::class,
];
protected function schedule(Schedule $schedule)
{
$schedule->exec('follow:advisor')->everyMinute();
}
protected function commands()
{
require base_path('routes/console.php');
}
}
当我在命令提示符下运行命令php artisan follow:advisor
时。
这是工作。但我希望它必须自动运行。
由于
答案 0 :(得分:6)
https://laravel.com/docs/5.4/scheduling
确保您运行的crontab指向Laravel文件artisan
* * * * * php /path-to-your-project/artisan schedule:run >> /dev/null 2>&1
->saturdays();
每个星期六是一个比crontab更简洁/更具表现力的方式答案 1 :(得分:2)
启动计划程序 使用调度程序时,只需将以下Cron条目添加到服务器即可。如果您不知道如何将Cron条目添加到服务器
* * * * * php /path-to-your-project/artisan schedule:run >> /dev/null 2>&1
这个Cron每分钟都会调用Laravel命令调度程序。执行schedule:run命令时,Laravel将评估您的计划任务并运行到期的任务。
答案 2 :(得分:0)
在laravel 5.4中创建命令和shedular之后,请在服务器中设置cron。所以你的命令可以自动运行。
以下是每分钟运行的crontab命令。
我希望它对你有用。