我需要下載的APK應用程序,但我必須保持我的頁面的用戶或重定向他 另一個網頁的標題,我只能下載應用程序或重定向他到另一個網頁,但我不能同時做兩 我的PHP代碼:下載文件,然後重定向到另一頁
$b= "location";
echo "<script>window.location.href = '$b';</script>" ;
$file = 'apk.apk';
if (file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="'.basename($file).'"');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
readfile($file);
}
HTTP的可能重複:/ /stackoverflow.com/questions/15872534/how-to-download-a-file-then-redirect-to-another-page-in-php – rahul
你能解釋一下我在這個URL給出的解決方案? –