当我使用以下标题时,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;