admin/app/common/services/aliyunoss/OSS/Result/UploadPartResult.php

28 lines
558 B
PHP

<?php
namespace app\common\services\aliyunoss\OSS\Result;
use app\common\services\aliyunoss\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");
}
}