拯救者 / yii2-aliyun-oss
Yii2 阿里云 OSS
1.0
2019-01-09 03:43 UTC
Requires
- aliyuncs/oss-sdk-php: >=2.0
- yiisoft/yii2: >=2.0.5
This package is auto-updated.
Last update: 2024-09-10 11:18:38 UTC
README
Yii2 阿里云 OSS
安装
composer require saviorlv/yii2-aliyun-oss -vvv
或者添加
"saviorlv/yii2-aliyun-oss":"^1.0"
使用
在 main.php 文件中进行如下修改
components => [ 'oss' => [ 'class' => 'Saviorlv\Aliyun\OSS', 'accessKeyId' => 'xxxxx', // 阿里云AccessKeyID 'accessKeySecret' => 'xxxx', // 阿里云 AccessKeySecret 'bucket' => 'xxx', // bucket 'endpoint' => 'http://oss-cn-hangzhou.aliyuncs.com', //OSS节点地址 ], ]
在控制器中
\Yii::$app->oss->upload($object,$file);