Laravel 8.* 清除缓存命令
清除缓存:
php artisan cache:clear
清除路由缓存:
php artisan route:cache
清除视图缓存:
php artisan view:clear
清除配置缓存:
php artisan config:cache
您也可以在路由中调用Artisan::call清除命令缓存。因此您可以像下面这样创建路由:
Route::get('/clear-cache-all', function() {
Artisan::call('cache:clear');
dd("Cache Clear All");
});清除缓存:
php artisan cache:clear
清除路由缓存:
php artisan route:cache
清除视图缓存:
php artisan view:clear
清除配置缓存:
php artisan config:cache
您也可以在路由中调用Artisan::call清除命令缓存。因此您可以像下面这样创建路由:
Route::get('/clear-cache-all', function() {
Artisan::call('cache:clear');
dd("Cache Clear All");
});
本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。
评论已关闭