什么
2.3默认浏览器
问题
我让PHP提交头尝试下载PDF &文本文件。这款手机看上去像是在下载文件,但上面写着"<Untitled>",并且仍在进行中。
其他
我在同一部电话里注意到文件下载。而且,每个桌面浏览器也都能正常工作。
标头
header('Pragma: public');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Cache-Control: public');
header('Content-Type: application/octet-stream');
header('Content-Length: ' . $FileSize);
header('Content-Disposition: attachment; filename="' . strtoupper( $FullFileName ) . '"');
header('Content-Transfer-Encoding: binary');
echo($Content);发布于 2014-07-03 13:50:11
有两个问题。
https://stackoverflow.com/questions/23395616
复制相似问题