Skip to content

Commit

Permalink
update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
lihsai0 committed Dec 6, 2023
1 parent d30e075 commit a6377d0
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
4 changes: 3 additions & 1 deletion examples/bucket_lifecycleRule.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
$prefix = 'test'; // 规则策略中的前缀
$delete_after_days = 80; // 用户新创建的文件将在该设定时间之后自动删除
$to_line_after_days = 70; // 用户新创建的文件将在该设定的时间之后自动转为低频存储
$to_archive_ir_after_days = 71; // 用户新创建的文件将在该设定的时间之后自动转为归档直读存储
$to_archive_after_days = 72; // 用户新创建的文件将在该设定的时间之后自动转为归档存储
$to_deep_archive_after_days = 74; // 用户新创建的文件将在该设定的时间之后自动转为深度归档存储

Expand All @@ -31,7 +32,8 @@
$delete_after_days,
$to_line_after_days,
$to_archive_after_days,
$to_deep_archive_after_days
$to_deep_archive_after_days,
$to_archive_ir_after_days
);
if ($err != null) {
var_dump($err);
Expand Down
1 change: 1 addition & 0 deletions examples/rs_batch_change_type.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
// 1 表示低频存储
// 2 表示归档存储
// 3 表示深度归档存储
// 4 表示归档直读存储
foreach ($keys as $key) {
$keyTypePairs[$key] = 1;
}
Expand Down
2 changes: 1 addition & 1 deletion examples/rs_change_type.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
// 参考文档:https://developer.qiniu.com/kodo/api/3710/chtype

$key = "qiniu.mp4";
$fileType = 1; // 0 表示标准存储;1 表示低频存储;2 表示归档存储;3 表示深度归档存储
$fileType = 1; // 0 表示标准存储;1 表示低频存储;2 表示归档存储;3 表示深度归档存储;4 表示归档直读存储;

list($ret, $err) = $bucketManager->changeType($bucket, $key, $fileType);
if ($err != null) {
Expand Down
9 changes: 8 additions & 1 deletion src/Qiniu/Storage/BucketManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -742,6 +742,7 @@ public function changeMime($bucket, $key, $mime)
* 1 表示低频存储;
* 2 表示归档存储;
* 3 表示深度归档存储;
* 4 表示归档直读存储;
*
* @return array
* @link https://developer.qiniu.com/kodo/api/3710/chtype
Expand Down Expand Up @@ -829,7 +830,7 @@ public function fetch($url, $bucket, $key = null)
* @param string $callbackbody 回调Body
* @param string $callbackbodytype 回调Body内容类型,默认为"application/x-www-form-urlencoded"
* @param string $callbackhost 回调时使用的Host
* @param int $file_type 存储文件类型 0:标准存储(默认),1:低频存储,2:归档存储
* @param int $file_type 存储文件类型 0:标准存储(默认),1:低频存储,2:归档存储,3:深度归档存储,4:归档直读存储
* @param bool $ignore_same_key 如果空间中已经存在同名文件则放弃本次抓取
* @return array
* @link https://developer.qiniu.com/kodo/api/4097/asynch-fetch
Expand Down Expand Up @@ -970,6 +971,9 @@ public function deleteAfterDays($bucket, $key, $days)
* @param int $to_line_after_days 多少天后将文件转为低频存储。
* -1 表示取消已设置的转低频存储的生命周期规则;
* 0 表示不修改转低频生命周期规则。
* @param int $to_archive_ir_after_days 多少天后转为归档直读存储。
* -1 表示取消已设置的转归档直读存储的生命周期规则;
* 0 表示不修改转归档直读生命周期规则。
* @param int $to_archive_after_days 多少天后将文件转为归档存储。
* -1 表示取消已设置的转归档存储的生命周期规则;
* 0 表示不修改转归档生命周期规则。
Expand Down Expand Up @@ -1010,6 +1014,9 @@ public function setObjectLifecycle(
* @param int $to_line_after_days 多少天后将文件转为低频存储。
* 设置为 -1 表示取消已设置的转低频存储的生命周期规则;
* 0 表示不修改转低频生命周期规则。
* @param int $to_archive_ir_after_days 多少天后将文件转为归档直读存储。
* 设置为 -1 表示取消已设置的转归档直读存储的生命周期规则;
* 0 表示不修改转归档直读生命周期规则。
* @param int $to_archive_after_days 多少天后将文件转为归档存储。
* -1 表示取消已设置的转归档存储的生命周期规则;
* 0 表示不修改转归档生命周期规则。
Expand Down

0 comments on commit a6377d0

Please sign in to comment.