我尝试使用 PHP 进行下载重定向。我正在通过另一台服务器获取文件
例如:http ://rarlab.com/rar/wrar420.exe
我想要脚本将文件另存为临时变量,并在他保存的同时,将其作为下载发送到浏览器...
function download($url,$name,$hash){
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
$data = curl_exec($ch);
curl_close($ch);
header('Content-Description: File Transfer');
header("Content-Disposition: attachment; filename=".$name);
ob_clean();
flush();
readfile($url);
}
download("http://rarlab.com/rar/wrar420.exe","winrar.rar","26digitHASH");
THX你们。