添加网站文件
This commit is contained in:
24
vendor/aliyuncs/oss-sdk-php/src/OSS/Result/SymlinkResult.php
vendored
Normal file
24
vendor/aliyuncs/oss-sdk-php/src/OSS/Result/SymlinkResult.php
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace OSS\Result;
|
||||
|
||||
use OSS\Core\OssException;
|
||||
use OSS\OssClient;
|
||||
|
||||
/**
|
||||
*
|
||||
* @package OSS\Result
|
||||
*/
|
||||
class SymlinkResult extends Result
|
||||
{
|
||||
/**
|
||||
* @return string
|
||||
* @throws OssException
|
||||
*/
|
||||
protected function parseDataFromResponse()
|
||||
{
|
||||
$this->rawResponse->header[OssClient::OSS_SYMLINK_TARGET] = rawurldecode($this->rawResponse->header[OssClient::OSS_SYMLINK_TARGET]);
|
||||
return $this->rawResponse->header;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user