Readfile显示内容

时间:2013-02-22 21:53:20

标签: php readfile

当我使用以下标题时,IE7显示文件的内容,而不是下载提示。 我在谷歌搜索过但没有找到扩展。

header('Content-Description: File Transfer');
header('Content-Type: application/force-download');
header('Content-Disposition: attachment; filename=\"Copy van '.basename($file).'\"');
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); 
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);
exit;

1 个答案:

答案 0 :(得分:1)

如果要发送标题,请确保它们是脚本的第一个输出。

这不起作用:

<html>  //==>output buffer
echo ... //==>output buffer
<?php header(...) ?>

这有效:

<?php
session_start();
$some_variable=$_POST[];
$k="2";
//until here, nothing is send to the output buffer
header(...);
?>
<html>