通过PHP服务时,图像无法打开:“非JPEG文件:以0x0a 0x0a开头”

时间:2018-08-14 21:40:59

标签: php http-headers mime-types rhel7

无法使文件下载正常工作。使用PHP7和Apache 2.4.6。

该文件将以正确的MIME类型和大小显示给浏览器。当我尝试打开该文件时:

enter image description here

该文件具有以下权限:

[user@box images]# ll 20180814170259999.jpg 
-rw-r-----. 1 apache apache 58405 Aug 14 17:02 20180814170259999.jpg

file -i显示以下内容:

[user@box images]# file -i 20180814170259999.jpg 
20180814170259999.jpg: image/jpeg; charset=binary

这是用于向浏览器显示文件的代码:

header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename=' . "20180814170259999.jpg"); 
header('Content-Transfer-Encoding: binary');
header('Connection: Keep-Alive');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . 58405);                 
readfile('/var/www/images/20180814170259999.jpg');
  • 我没有在Apache的错误日志中显示任何错误。
  • 如果我通过sftp下载文件,则可以正常打开。
  • 无论使用什么浏览器,都会发生相同的错误。
  • 将Content-Type更改为image/jpeg没有区别-相同 出现上述错误。

是什么原因导致图像无法正确显示?

0 个答案:

没有答案