我使用的是laravel 5.6,我想创建用于上传图片的自定义磁盘
我收到此错误
不支持InvalidArgumentException驱动程序[]。
这是我在控制器中保存文件的方式
$cover = $request->file('cover_image');
$extension = $cover->getClientOriginalExtension();
Storage::disk('test')->put($cover->getFilename().'.'.$extension, File::get($cover));
这是我的config/filesystems.php
'disks' => [
'local' => [
'driver' => 'local',
'root' => storage_path('app'),
],
'test' => [
'driver' => 'local',
'root' => storage_path(),
],
'public' => [
'driver' => 'local',
'root' => storage_path('app/public/asghar'),
'url' => env('APP_URL').'/storage',
'visibility' => 'public',
],
's3' => [
'driver' => 's3',
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION'),
'bucket' => env('AWS_BUCKET'),
'url' => env('AWS_URL'),
],
答案 0 :(得分:0)
发生此错误是因为我的配置已缓存。
可能是我不小心使用了config:cache
或类似的东西。
使用此命令清除配置缓存即可解决问题
php artisan config:clear