| 123456789101112131415161718192021222324252627 | <?phpnamespace OSS\Result;use OSS\Core\OssException;/** * Class AppendResult * @package OSS\Result */class AppendResult extends Result{    /**     * Get the value of next-append-position from append's response headers     *     * @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");    }}
 |