zuitu/ufile-sdk

ufilesdk base on rest

1.0.13 2017-07-23 13:34 UTC

This package is auto-updated.

Last update: 2024-04-17 19:02:57 UTC


README

#ufile sdk base on https://docs.ucloud.cn/api/ufile-api/index #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