0

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

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;
4

1 回答 1

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>
于 2013-02-23T11:15:47.147 回答