拯救者/yii2-aliyun-oss

Yii2 阿里云 OSS

安装次数: 16

依赖者: 0

建议者: 0

安全性: 0

星标: 2

关注者: 1

分支: 0

开放问题: 0

类型:yii2-extension

1.0 2019-01-09 03:43 UTC

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);