Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Laravel 5.2 文件系统存储类。
以下是我将对象放入存储桶的方式:
Storage::put('s3')->put([$path, $content]);
如何在选项中添加 StorageClass => REDUCED_REDUNDANCY?我试图添加 config/filesystem.php 但它不起作用
谢谢
我找到了答案。如果我们包含 getDriver,我们实际上可以将第三个数组放在 put() 方法上
Storage::disk('s3') ->getDriver() ->put([$path, $resource, 'StorageClass' => 'REDUCED_REDUNDANCY']);