在laravel中每天获取数据
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在laravel中每天获取数据相关的知识,希望对你有一定的参考价值。
答案
您可以使用现有的Laravel cron作业调度来满足您的特定要求。
请参阅以下Laravels官方文档https://laravel.com/docs/5.8/scheduling#scheduling-queued-jobs
我将展示一个简单的示例来了解此配置。
php artisan make:command DailyUpdate
上面的命令将在以下位置app / Console / Commands目录中创建一个类组件。
生成的类文件将类似于以下内容,
<?php
namespace AppConsoleCommands;
use IlluminateConsoleCommand;
class DailyUpdate extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'command:name';
/**
* 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()
{
//
}
}
之后根据您的要求更改以下内容。
protected $signature = 'command:name';
protected $description = ‘Command description’;
在handle()内部,您可以放置需要按计划重复的实现。
public function handle() {
// implementation
}
完成所有更改后,您需要注册该命令。
在app / console / kernal.php中更改配置如下,
protected $commands = [
CommandsDailyUpdate::class
];
protected function schedule(Schedule $schedule)
{
$schedule->command('hour:update')
->daily();
}
以上是关于在laravel中每天获取数据的主要内容,如果未能解决你的问题,请参考以下文章