mirror of
https://github.com/ufilesdk-dev/ufile-phpsdk.git
synced 2025-04-06 04:00:05 +08:00
新增append的demo
新增append的demo
This commit is contained in:
parent
48a18a58ef
commit
fdba9adfa8
21
v1/demo/append.php
Normal file
21
v1/demo/append.php
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
require_once("../ucloud/proxy.php");
|
||||||
|
|
||||||
|
//存储空间名
|
||||||
|
$bucket = "your bucket";
|
||||||
|
//上传至存储空间后的文件名称(请不要和API公私钥混淆)
|
||||||
|
$key = "your key";
|
||||||
|
//待上传文件的本地路径
|
||||||
|
$file = "local file path";
|
||||||
|
//当前append 的文件已有的大小, 新建填0
|
||||||
|
$position = 0;
|
||||||
|
|
||||||
|
//该接口适用于0-10MB小文件,更大的文件建议使用分片上传接口
|
||||||
|
list($data, $err) = UCloud_AppendFile($bucket, $key, $file, $position);
|
||||||
|
if ($err) {
|
||||||
|
echo "error: " . $err->ErrMsg . "\n";
|
||||||
|
echo "code: " . $err->Code . "\n";
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
echo "ETag: " . $data['ETag'] . "\n";
|
Loading…
x
Reference in New Issue
Block a user