0

尝试返回文件时,我无法让 php 设置各种标头。

相关代码:

if (ob_get_contents()) ob_end_clean();
header($_SERVER["SERVER_PROTOCOL"] . " 200 OK");
header('Content-Type', 'application/pdf');
if (ob_get_contents()) ob_flush();
header('Content-Disposition', 'attachment; filename="' . basename($setfile) . '"');
header('Content-length', filesize($fullpath));

readfile($fullpath);

文件存在,一切正常。但标题响应始终是:

HTTP/1.1 200 OK
Date: Sat, 09 Nov 2013 22:19:22 GMT
Server: Apache/2.2.24 (Unix) DAV/2 PHP/5.5.0 mod_ssl/2.2.24 OpenSSL/0.9.8y
X-Powered-By: PHP/5.5.0
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 20
Content-Type: text/html

我可以修改状态码,我已经返回 404 等。但内容类型始终是文本/html ......我有点茫然.. 内容处置没有被设置.. 嗯。 ..

提供文件需要有效的会话,因此请不要使用“仅重定向到文件”类型的答案。

感谢您的任何意见

4

2 回答 2

2

你打错电话header()了。你要

header('Content-type: application/pdf');
header('Content-Disposition: attachment; filename="' . basename($setfile) . '"');

http://php.net/manual/en/function.header.php

于 2013-11-09T22:27:00.883 回答
1

那这个呢 :

<?php
// We'll be outputting a PDF
header('Content-type: application/pdf');

// It will be called downloaded.pdf
header('Content-Disposition: attachment; filename="YOUR_FILE.pdf"');

@rob 是对的,您错误地调用了标头。另外,看看您是否真的能够读取该文件。

于 2013-11-09T22:30:14.723 回答