当我使用链接时<a href="test.apk">download</a>
结果下载OK
但是当我使用表单提交时是错误的
这是代码:
<a href="download.php">download</a>
在download.php
我使用代码:
...
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-Type: application/vnd.android.package-archive");
header("Content-Description: File Transfer");
header("Content-Disposition: attachment; filename='test.apk';" );
readfile('test.apk');
...
当点击下载是从test.apk
自动转换到test.zip
(我使用android 2.3),如何修复它?