You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
498 B
28 lines
498 B
1 year ago
|
<?php
|
||
|
|
||
|
namespace OSS\Result;
|
||
|
|
||
|
use OSS\Core\OssException;
|
||
|
|
||
|
/**
|
||
|
* Class UploadPartResult
|
||
|
* @package OSS\Result
|
||
|
*/
|
||
|
class UploadPartResult extends Result
|
||
|
{
|
||
|
/**
|
||
|
* 结果中part的ETag
|
||
|
*
|
||
|
* @return string
|
||
|
* @throws OssException
|
||
|
*/
|
||
|
protected function parseDataFromResponse()
|
||
|
{
|
||
|
$header = $this->rawResponse->header;
|
||
|
if (isset($header["etag"])) {
|
||
|
return $header["etag"];
|
||
|
}
|
||
|
throw new OssException("cannot get ETag");
|
||
|
|
||
|
}
|
||
|
}
|