Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xujif/ucloud-ufile-sdk
ucloud-ufile-sdk
https://github.com/xujif/ucloud-ufile-sdk
Last synced: 17 days ago
JSON representation
ucloud-ufile-sdk
- Host: GitHub
- URL: https://github.com/xujif/ucloud-ufile-sdk
- Owner: xujif
- Created: 2015-11-10T09:46:36.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-07-19T09:02:56.000Z (over 6 years ago)
- Last Synced: 2024-10-05T02:39:54.556Z (3 months ago)
- Language: PHP
- Size: 11.7 KB
- Stars: 1
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
#ucloud ufile sdk
base on https://docs.ucloud.cn/api-docs/ufile-api/
#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