Kirin 6699729a42 1 | hace 2 años | |
---|---|---|
.. | ||
docs | hace 2 años | |
examples | hace 2 años | |
src | hace 2 años | |
tests | hace 2 años | |
.gitignore | hace 2 años | |
.scrutinizer.yml | hace 2 años | |
.travis.yml | hace 2 años | |
CHANGELOG.md | hace 2 años | |
CONTRIBUTING.md | hace 2 años | |
LICENSE | hace 2 años | |
README.md | hace 2 años | |
autoload.php | hace 2 años | |
composer.json | hace 2 años | |
phpunit.xml.dist | hace 2 años | |
test-env.sh | hace 2 años |
通过composer,这是推荐的方式,可以使用composer.json 声明依赖,或者运行下面的命令。SDK 包已经放到这里 qiniu/php-sdk
。
$ composer require qiniu/php-sdk
Qiniu SDK版本 | PHP 版本 |
---|---|
7.x | cURL extension, 5.3 - 5.6,7.0 |
6.x | cURL extension, 5.2 - 5.6 |
use Qiniu\Storage\UploadManager;
use Qiniu\Auth;
...
$upManager = new UploadManager();
$auth = new Auth($accessKey, $secretKey);
$token = $auth->uploadToken($bucketName);
list($ret, $error) = $upManager->put($token, 'formput', 'hello world');
...
$ ./vendor/bin/phpunit tests/Qiniu/Tests/
详情参考代码提交指南。
The MIT License (MIT).详情见 License文件.