我使用 php 强制下载任何文件,这是我的代码
索引.php
<a href="download.php?file_name=example.png"><button class="details_button_T">Télécharger</button></a>
下载.php
$file= $_GET['file_name'];
if (file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);
exit();
}
该代码适用于所有浏览器,只有chrome显示错误:服务器发送的双标头