Kirin c2e0541d56 tijiao | il y a 2 ans | |
---|---|---|
.. | ||
docs | il y a 2 ans | |
examples | il y a 2 ans | |
src | il y a 2 ans | |
tests | il y a 2 ans | |
.gitignore | il y a 2 ans | |
.scrutinizer.yml | il y a 2 ans | |
.travis.yml | il y a 2 ans | |
CHANGELOG.md | il y a 2 ans | |
CONTRIBUTING.md | il y a 2 ans | |
LICENSE | il y a 2 ans | |
README.md | il y a 2 ans | |
autoload.php | il y a 2 ans | |
composer.json | il y a 2 ans | |
phpunit.xml.dist | il y a 2 ans | |
test-env.sh | il y a 2 ans |
通过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文件.