我们说我的文件位置有s3 url路径。如何通过点击按钮直接将文件从该路径下载到下载文件夹?
答案 0 :(得分:1)
试试这个:
<?php
if(isset($_POST('btnDownload')))
{
$fileurl = 'your full path of s3 here';
header("Content-type:application/pdf");
header('Content-Disposition: attachment; filename=' . $filename);
readfile( $fileurl );
}
?>