在Android设备中下载不成功的错误

时间:2013-08-03 17:03:50

标签: php http-headers download

我正在尝试使用php和htaccess下载图像,但它无法在默认的android问题中工作。

header('Content-Type: application/octet-stream');
header("Content-Transfer-Encoding: Binary"); 
header("Content-disposition: attachment; filename=\"".$filename."\""); 
readfile(base_url($go));

也尝试了

header('Content-Type: IMAGE MIME TYPE');
header("Content-Transfer-Encoding: Binary"); 
header("Content-disposition: attachment; filename=\"".$filename."\""); 
readfile(base_url($go));

我试过这个,但没有工作也试过htaccess代码

AddType image / jpg jpg

还尝试使用htaccess强制下载。 在我的代码中有什么问题或在Android默认浏览器中有什么问题? 它与Pc浏览器配合良好。

0 个答案:

没有答案