时间:2021-07-01 10:21:17 帮助过:25人阅读
做了一个简易的表单上传文件,怎么用PHP获得下载地址呢,我是菜鸟
做了一个简易的表单上传文件,怎么用PHP获得下载地址呢,我是菜鸟
php获取下载外链的demo,你可以参考下
require 'vendor/autoload.php';
use Qiniu\Auth;
$accessKey = 'accessKey';
$secretKey = 'secretKey';
$auth = new Auth($accessKey, $secretKey);
$baseUrl = 'URL';
// 'URL=http://空间域名/key'
$authUrl = $auth->privateDownloadUrl($baseUrl);
echo $authUrl;
?>