yii2上传文件到腾讯云对象存储组件

Installs: 233

Dependents: 0

Suggesters: 0

Security: 0

Stars: 4

Watchers: 1

Forks: 1

Open Issues: 0

Type:yii2-extension

v0.1.2 2017-11-25 08:34 UTC

This package is not auto-updated.

Last update: 2024-09-29 04:36:52 UTC


README

yii2上传文件到腾讯云对象存储组件

CHANGE LOG

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require xplqcloud/cos

or add

"xplqcloud/cos": "*"

to the require section of your composer.json.

Configuration

To use this extension, simply add the following code in your application configuration:

return [
    //....
    'components' => [
        'cos'=>[
            'class'=>'xplqcloud\cos\Cos',
            'app_id' => 'app_id',
            'secret_id' => 'secret_id',
            'secret_key' => 'secret_key',
            'region' => 'region',
            'bucket'=>'bucket',
            'insertOnly'=>true,
            'timeout' => 200
        ],
    ],
];

[操作说明]

//上传文件
\Yii::$app->cos->upload($src, $dst);

//删除文件
\Yii::$app->cos->delFile($dst);

//创建文件夹
\Yii::$app->cos->delFolder($folder);

//删除文件夹
\Yii::$app->cos->delFile($folder);

//获取文件夹列表
\Yii::$app->cos->listFolder($folder);