hlf_513 / ucloud-ufile-sdk
ucloud ufilesdk base on rest
1.0.7
2017-06-29 08:54 UTC
Requires
- php: >=5.3.0
- guzzlehttp/guzzle: ~6.0
Requires (Dev)
- phpunit/phpunit: ~4.0
This package is not auto-updated.
Last update: 2025-01-14 18:39:18 UTC
README
forked from xujif/ucloud-ufile-sdk
usage
$sdk = new UfileSdk('storage','api_pub_key','api_pub_secret');
$sdk->put('text.txt',"content");
$sdk->putFile('text.txt',"/path/to/yourfile");
$contents = $sdk->get('dd');
$exists = $sdk->exists('dd222');
$size = $sdk->delete('dd');
或者直接查看tests/sdkTest.php
modify
- 开启了put()的header参数
- put()、putFile()增加响应码校验
- 优化delete()的响应判断