我正在编写一个脚本来增加 APK 文件下载的计数器,然后将文件发送到浏览器进行下载。
这是我所拥有的:
<?php
$file = "android.apk";
function force_download($file){
header("Pragma: public", true);
header("Expires: 0"); // set expiration time
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");
header("Content-Disposition: attachment; filename=".basename($file));
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".filesize($file));
die(file_get_contents($file));
}
force_download($file
问题是使用像Firefox这样的浏览器,它会下载但它就像'android.apk - 0 bytes'。所以它本质上不会下载文件的内容。
我可能做错了什么?解决方案?
重要提示:它必须在移动设备上工作。
);