张保健 97d25c38f3 首次提交 | hace 4 años | |
---|---|---|
.. | ||
docs/rtc | hace 4 años | |
examples | hace 4 años | |
src/Qiniu | hace 4 años | |
tests | hace 4 años | |
.gitignore | hace 4 años | |
.scrutinizer.yml | hace 4 años | |
.travis.yml | hace 4 años | |
CHANGELOG.md | hace 4 años | |
CONTRIBUTING.md | hace 4 años | |
LICENSE | hace 4 años | |
README.md | hace 4 años | |
autoload.php | hace 4 años | |
composer.json | hace 4 años | |
phpunit.xml.dist | hace 4 años | |
test-env.sh | hace 4 años |
qiniu/php-sdk
。
bash
$ 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文件.