mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
27 lines
565 B
PHP
27 lines
565 B
PHP
<?php
|
|
|
|
namespace OSS\Result;
|
|
|
|
use OSS\Core\OssException;
|
|
|
|
/**
|
|
* Class InitiateBucketWormResult
|
|
* @package OSS\Result
|
|
*/
|
|
class InitiateBucketWormResult extends Result
|
|
{
|
|
/**
|
|
* Get the value of worm-id from response headers
|
|
*
|
|
* @return int
|
|
* @throws OssException
|
|
*/
|
|
protected function parseDataFromResponse()
|
|
{
|
|
$header = $this->rawResponse->header;
|
|
if (isset($header["x-oss-worm-id"])) {
|
|
return strval($header["x-oss-worm-id"]);
|
|
}
|
|
throw new OssException("cannot get worm-id");
|
|
}
|
|
} |