Artisan 是 Laravel 自带的命令行接口名称,它为我们在开发过程中提供了很多有用的命令。除了Artisan提供的系统命令之外,还可以构建自己的命令用于任务调度
1.查看及使用
php artisan list //查看artisan命令
php artisan help migrate //只需要在命令前加上help就可以查看该命令的帮助
2.编写命令
除了Artisan提供的系统命令之外,还可以构建自己的命令。你可以将自定义命令存放在app/Console/Commands目录;当然,你可以自己选择存放位置,只要该命令可以被Composer自动加载即可。
下面就由进行一个任务调度案例进行展示如何编写属于自己的命令:
任务调度又是我们俗称的“计划任务”
1)开启调度 当前项目名为laraveldemo, 绝对路径是/var/www/
两种方式:
a).到项目根目录下,运行下面命令:
root php artisan schedule:run
b).将下面命令写入文件中,然后执行文件,进而执行命令:
* * * * * root php /var/www/laraveldemo/artisan schedule:run
在原本的php artisan
中添加了自己项目的绝对路径
该Cron将会按照时间调用Laravel命令调度,然后,Laravel评估你的调度任务并运行到期的任务。
2.1 在项目根目录中 下创建定时任务所需要进行的操作
创建命令:php artisan make:console First_Console
该操作会在app/Console/Commands
下生成一个First_Console.php
下面打开该文件 给大家展示一个简单而又完整的代码例子
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
class First_Console extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'first_sinature';
/**
* The console command description.
*
* @var string
*/
protected $description = 'first_descript';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
$this->addData();
}
// 小例子
public function test(){
Log::info("First_Console Demo");
}
}
值得注意的是 这个文件中的
$signature = 'first_sinature'
这个签名在Kernel.php中也要相应用到
下面也附上Kernel.php的完整代码
<?php
namespace App\Console;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
\App\Console\Commands\Inspire::class,
'\App\Console\Commands\First_Console',
];
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
// 为测试方便 每分钟执行一次
$schedule->command('first_sinature')->everyMinute();
}
}
再强调一次$schedule->command('first_sinature')
里面的first_sinature
必须和上面的签名$signature = 'first_sinature'
对应上
protected $commands = [
\App\Console\Commands\Inspire::class,
'\App\Console\Commands\First_Console',
];
还有schedule()里
// 每周星期六11:00运行一次...
$schedule->command('first_sinature')->weekly()->saturdays()->at('11:00');
// 每周星期一:00运行一次...
$schedule->command('first_sinature')->weekly()->->mondays()->at('01:00');
此时要查看效果的话,可以到/storage/logs/laravel.log
下可以看到打印出的信息。
2.2 调度常用选项
当然,你可以分配多种调度到任务
->cron('* * * * *'); 在自定义Cron调度上运行任务
->everyMinute(); 每分钟运行一次任务
->everyFiveMinutes(); 每五分钟运行一次任务
->everyTenMinutes(); 每十分钟运行一次任务
->everyThirtyMinutes(); 每三十分钟运行一次任务
->hourly(); 每小时运行一次任务
->daily(); 每天凌晨零点运行任务
->dailyAt('13:00'); 每天13:00运行任务
->twiceDaily(1, 13); 每天1:00 & 13:00运行任务
->weekly(); 每周运行一次任务
->monthly(); 每月运行一次任务
->weekdays(); 只在工作日运行任务
->sundays(); 每个星期天运行任务
->mondays(); 每个星期一运行任务
->tuesdays(); 每个星期二运行任务
->wednesdays(); 每个星期三运行任务
->thursdays(); 每个星期四运行任务
->fridays(); 每个星期五运行任务
->saturdays(); 每个星期六运行任务
->when(Closure); 基于特定测试运行任务
网友评论