18 lines
		
	
	
		
			434 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			18 lines
		
	
	
		
			434 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| 
								 | 
							
								<?php
							 | 
						||
| 
								 | 
							
								require_once __DIR__ . '/../autoload.php';
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								use \Qiniu\Auth;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								$accessKey = getenv('QINIU_ACCESS_KEY');
							 | 
						||
| 
								 | 
							
								$secretKey = getenv('QINIU_SECRET_KEY');
							 | 
						||
| 
								 | 
							
								$bucket = getenv('QINIU_TEST_BUCKET');
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								$key = "qiniu.mp4_copy";
							 | 
						||
| 
								 | 
							
								$auth = new Auth($accessKey, $secretKey);
							 | 
						||
| 
								 | 
							
								$config = new \Qiniu\Config();
							 | 
						||
| 
								 | 
							
								$bucketManager = new \Qiniu\Storage\BucketManager($auth, $config);
							 | 
						||
| 
								 | 
							
								$err = $bucketManager->delete($bucket, $key);
							 | 
						||
| 
								 | 
							
								if ($err) {
							 | 
						||
| 
								 | 
							
								    print_r($err);
							 | 
						||
| 
								 | 
							
								}
							 |