1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| <?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");
|
| }
| }
|
|