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.
27 lines
570 B
27 lines
570 B
<?php
|
|
|
|
namespace OSS\Result;
|
|
|
|
use OSS\Core\OssException;
|
|
|
|
/**
|
|
* Class AppendResult
|
|
* @package OSS\Result
|
|
*/
|
|
class AppendResult extends Result
|
|
{
|
|
/**
|
|
* 结果中part的next-append-position
|
|
*
|
|
* @return int
|
|
* @throws OssException
|
|
*/
|
|
protected function parseDataFromResponse()
|
|
{
|
|
$header = $this->rawResponse->header;
|
|
if (isset($header["x-oss-next-append-position"])) {
|
|
return intval($header["x-oss-next-append-position"]);
|
|
}
|
|
throw new OssException("cannot get next-append-position");
|
|
}
|
|
} |