我正在尝试使用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浏览器配合良好。