dingmuqi / flysystem-aliyun-oss-copy
阿里云OSS适配器用于flysystem。 aliyuncs/oss-sdk-php ~2.3
1.0.0
2022-06-14 01:06 UTC
Requires
- php: >=5.5.0
- aliyuncs/oss-sdk-php: ~2.3
- league/flysystem: ^1.0.49
This package is auto-updated.
Last update: 2024-09-14 07:12:32 UTC
README
阿里云OSS存储适配器用于flysystem - PHP文件系统抽象。
安装
composer require xxtime/flysystem-aliyun-oss
日志
1.3.0
- 一些参数名称已更改
- 默认区域 oss-cn-hangzhou
使用方法
use League\Flysystem\Filesystem; use Xxtime\Flysystem\Aliyun\OssAdapter; $aliyun = new OssAdapter([ 'accessId' => '<aliyun access id>', 'accessSecret' => '<aliyun access secret>', 'bucket' => '<bucket name>', 'endpoint' => '<endpoint address>', // 'timeout' => 3600, // 'connectTimeout' => 10, // 'isCName' => false, // 'token' => '', ]); $filesystem = new Filesystem($aliyun); // Write Files $filesystem->write('path/to/file.txt', 'contents'); // get RAW data from aliYun OSS $raw = $aliyun->supports->getFlashData(); // Write Use writeStream $stream = fopen('local/path/to/file.txt', 'r+'); $result = $filesystem->writeStream('path/to/file.txt', $stream); if (is_resource($stream)) { fclose($stream); } // Update Files $filesystem->update('path/to/file.txt', 'new contents'); // Check if a file exists $exists = $filesystem->has('path/to/file.txt'); // Read Files $contents = $filesystem->read('path/to/file.txt'); // Delete Files $filesystem->delete('path/to/file.txt'); // Rename Files $filesystem->rename('filename.txt', 'newname.txt'); // Copy Files $filesystem->copy('filename.txt', 'duplicate.txt'); // list the contents (not support recursive now) $filesystem->listContents('path', false);
// 说明:此方法返回从阿里云接口返回的原生数据,仅可调用一次 // DESC: this function return AliYun RAW data $raw = $aliyun->supports->getFlashData();
文档
参考
http://flysystem.thephpleague.com/api/
https://github.com/thephpleague/flysystem