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.
		
		
		
		
			
				
					34 lines
				
				757 B
			
		
		
			
		
	
	
					34 lines
				
				757 B
			|   
											7 months ago
										 | <?php | ||
|  | 
 | ||
|  | /** | ||
|  |  * Class PrefixInfo | ||
|  |  * | ||
|  |  * ListObjects return Prefix list of classes | ||
|  |  * The returned data contains two arrays | ||
|  |  * One is to get the list of objects【Can be understood as the corresponding file system file list】 | ||
|  |  * One is to get Prefix list【Can be understood as the corresponding file system directory list】 | ||
|  |  * | ||
|  |  * @package OSS\Model | ||
|  |  * @link http://help.aliyun.com/document_detail/oss/api-reference/bucket/GetBucket.html | ||
|  |  */ | ||
|  | class PrefixInfo | ||
|  | { | ||
|  |     /** | ||
|  |      * PrefixInfo constructor. | ||
|  |      * @param string $prefix | ||
|  |      */ | ||
|  |     public function __construct($prefix) | ||
|  |     { | ||
|  |         $this->prefix = $prefix; | ||
|  |     } | ||
|  | 
 | ||
|  |     /** | ||
|  |      * @return string | ||
|  |      */ | ||
|  |     public function getPrefix() | ||
|  |     { | ||
|  |         return $this->prefix; | ||
|  |     } | ||
|  | 
 | ||
|  |     private $prefix; | ||
|  | } |