19 lines
		
	
	
		
			413 B
		
	
	
	
		
			PHP
		
	
	
		
		
			
		
	
	
			19 lines
		
	
	
		
			413 B
		
	
	
	
		
			PHP
		
	
	
|  | <?php | |||
|  | 
 | |||
|  | require_once __DIR__ . '/../autoload.php'; | |||
|  | 
 | |||
|  | use Qiniu\Auth; | |||
|  | use Qiniu\Config; | |||
|  | use Qiniu\Processing\PersistentFop; | |||
|  | 
 | |||
|  | // 控制台获取密钥:https://portal.qiniu.com/user/key
 | |||
|  | $accessKey = getenv('QINIU_ACCESS_KEY'); | |||
|  | $secretKey = getenv('QINIU_SECRET_KEY'); | |||
|  | $auth = new Auth($accessKey, $secretKey); | |||
|  | 
 | |||
|  | $config = new Config(); | |||
|  | $config->useHTTPS=true; | |||
|  | 
 | |||
|  | // 初始化
 | |||
|  | $pfop = new PersistentFop($auth, $config); |