php 清除所有Laravel缓存并再次缓存。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 清除所有Laravel缓存并再次缓存。相关的知识,希望对你有一定的参考价值。

<?php

namespace App\Console\Commands;

use Illuminate\Console\Command;

class ReloadCacheCommand extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'reload:cache';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Reload caches.';

    /**
     * Create a new command instance.
     */
    public function __construct()
    {
        parent::__construct();
    }

    /**
     * Execute the console command.
     *
     * @return mixed
     */
    public function handle()
    {
        $this->call('view:clear');
        $this->call('view:cache');
        $this->call('route:clear');
        // $this->call('route:cache'); // use this if you don't have any closure based route
        $this->call('optimize:clear');
        $this->call('config:cache');
        $this->info('Successfully reload caches.');
    }
}

以上是关于php 清除所有Laravel缓存并再次缓存。的主要内容,如果未能解决你的问题,请参考以下文章

Laravel 4清除所有过期缓存

我们如何清除Laravel中的控制器和模型缓存

我在 laravel 5.6 路线中更改了 web.php,但仍然给了我旧路线

Laravel 5.4 - php artisan cache:使用'file'缓存驱动程序时clear不清除缓存文件

如何使用命令行清除 laravel 中的缓存?

清除缓存时使用umask设置权限