我正在通过PHP脚本下载位于服务器上的PDF文件(可以打开文件):
local-desktop$ ssh news-cache1 "top -c -b -n 1 |grep redis-server"
5137 redis-user 20 0 83.5g 23g 884 S 13.7 29.4 13388:55 ./bin/redis-server
下载的文件是gzip压缩的。尺寸小于原装尺寸。在最后添加.gz扩展名并提取文件之前无法打开。
服务器API CGI / FastCGI
PHP版本7.1.0
Lighttpd 1.4.35
请求标题
ini_set("zlib.output_compression", "Off"); // just to be sure
$quoted = sprintf('"%s"', addcslashes(basename($fileName), '"\\'));
$size = filesize($fileName); // size at this stage is correct
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename=' . $quoted);
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: ' . $size);
ob_clean();
flush();
readfile($fileName);
ini_set("zlib.output_compression", "On");
exit;
回复标题
Accept:text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
Accept-Encoding:gzip, deflate, sdch, br
Accept-Language:en-US,en;q=0.8
Authorization:Basic ************
Cache-Control:max-age=0
Connection:keep-alive
Host:dev.*********.lv
Upgrade-Insecure-Requests:1
User-Agent:Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36
Content-Length标头正确(与文件系统相同)。
如果我输入指向PDF文件的完整URL,则会立即下载并打开该文件。
目标文件在下载之后/之前是否或何时默默地进行gzip压缩?!
在Chrome,Firefox,Safari,Opera上进行测试
答案 0 :(得分:0)
出于某种原因
ini_set("zlib.output_compression", "Off");
没有完成它的工作,变量仍然是" On"。即使此参数为PHP_INI_ALL类,也可以在任何地方设置条目。
在php.ini文件中将此变量设置为Off解决了该问题,但也提出了有关运行时配置变量的新问题。
调用phpinfo();在readfile()之前允许我追踪错误。