1
我試圖用http頭下載文件,但它不會完全下載。上傳的文件size is 1 MB
和文件僅用我的代碼336 byte
大小下載。HTTP頭文件沒有完全下載
我用下面的代碼
$attachment_location= "filename";
$filePath= "$siteURL/foldername/filename";
$file_content = file_get_contents($filePath);
header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=\"$attachment_location\"");
echo $file_content;
該問題可能會回答你的問題https://stackoverflow.com/questions/386845/http-headers-for-file-downloads –