キャッシュクリア系コマンド
キャッシュクリア系コマンド
ここで紹介されているこの4つを一発で実行したい。
php artisan cache:clear
php artisan config:clear
php artisan route:clear
php artisan view:clear
bashにしようかな。と考えていたけど、Laravel特有のものを使ってみるか、ということでこの記事。
php artisan make:command clearBatch
これ、実行。
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
class clearBatch 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 int
*/
public function handle()
{
return 0;
}
}
こんなのができる。これを改変。
今回は$signature
とhandle()
を変える
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\Artisan;
class clearBatch extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'command:cacheClear';
/**
* 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 int
*/
public function handle()
{
Artisan::call('cache:clear');
Artisan::call('config:clear');
Artisan::call('route:clear');
Artisan::call('view:clear');
$this->info('Cache cleared successfully.');
}
}
こんな感じ。これを保存して実行。1発で終わる。
zombie@DESKTOP-JLU30CD:~/working/study_Laravel/myapp$ php artisan command:cacheClear
Cache cleared successfully.
引用
株式会社ゆめみ様:Laravel キャッシュクリア系コマンドなど