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.
|
|
<?php
namespace OSS\Result;
use OSS\Model\ListPartsInfo; use OSS\Model\PartInfo;
/** * Class ListPartsResult * @package OSS\Result */ class ListPartsResult extends Result { /** * 解析ListParts接口返回的xml数据 * * @return ListPartsInfo */ protected function parseDataFromResponse() { $content = $this->rawResponse->body; $xml = simplexml_load_string($content); $bucket = isset($xml->Bucket) ? strval($xml->Bucket) : ""; $key = isset($xml->Key) ? strval($xml->Key) : ""; $uploadId = isset($xml->UploadId) ? strval($xml->UploadId) : ""; $nextPartNumberMarker = isset($xml->NextPartNumberMarker) ? intval($xml->NextPartNumberMarker) : ""; $maxParts = isset($xml->MaxParts) ? intval($xml->MaxParts) : ""; $isTruncated = isset($xml->IsTruncated) ? strval($xml->IsTruncated) : ""; $partList = array(); if (isset($xml->Part)) { foreach ($xml->Part as $part) { $partNumber = isset($part->PartNumber) ? intval($part->PartNumber) : ""; $lastModified = isset($part->LastModified) ? strval($part->LastModified) : ""; $eTag = isset($part->ETag) ? strval($part->ETag) : ""; $size = isset($part->Size) ? intval($part->Size) : ""; $partList[] = new PartInfo($partNumber, $lastModified, $eTag, $size); } } return new ListPartsInfo($bucket, $key, $uploadId, $nextPartNumberMarker, $maxParts, $isTruncated, $partList); } }
|