如何在 Laravel 中获取 Amazon S3 中对象的存储空间 class
How can i get the storage class of a object in Amazon S3 in Laravel
我需要使用 Laravel flysystem 获取 s3 存储桶中对象的存储 class,但是 class 没有方法,这怎么能做到呢。
项目 thephpleague/flysystem-aws-s3-v3
需要更新更多 eloquent。
在Blade中:
@php
$as3StorageMetaData = ($as3Storage->getMetadata($file));
@endphp
在文件循环中使用:
$as3StorageMetaData["storageclass"]
returns 常数。
这个项目可以用函数 getStorageClass
我需要使用 Laravel flysystem 获取 s3 存储桶中对象的存储 class,但是 class 没有方法,这怎么能做到呢。
项目 thephpleague/flysystem-aws-s3-v3
需要更新更多 eloquent。
在Blade中:
@php
$as3StorageMetaData = ($as3Storage->getMetadata($file));
@endphp
在文件循环中使用:
$as3StorageMetaData["storageclass"]
returns 常数。
这个项目可以用函数 getStorageClass