codewen2018 / yii2-qiniu
yii2上传到七牛云存储
Installs: 27
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/codewen2018/yii2-qiniu
This package is not auto-updated.
Last update: 2025-12-12 07:09:45 UTC
README
composer.json:
{
"require": {
"80h4ck/yii2-qiniu": "~1.0.0"
}
}
Usage
<?php use 80h4ck\qiniu\Qiniu; $config = [ 'accessKey'=>'xxx', 'secretKey'=>'xxx', 'domain'=>'http://demo.domain.com/', 'bucket'=>'demo', 'area'=>Qiniu::AREA_HUABEI ]; $qiniu = new Qiniu($config); $key = time(); $qiniu->uploadFile($_FILES['tmp_name'],$key); $url = $qiniu->getLink($key);