我的文件下载效果很好。文件正确传递。但我想让它变得更漂亮。
如果我点击新标签中的文件的html下载链接,有没有办法设置图标和窗口标题?
该文件由php生成并流式传输。
客户端部分:
<a target="_blank" tabindex="0" href="/path/to/file-download/interface" >
服务器流,而$file
是一些保存文件信息的数组:
if (file_exists($file['path'])) {
$finfo = finfo_open(FILEINFO_MIME_TYPE);
$mime = finfo_file($finfo, $file['path']);
if( strstr($mime, "image") !== false ){
header('Content-Type: '.$mime);
header('Content-Disposition: filename='.basename($file['path']));
} else {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file['path']));
}
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['path']));
ob_clean();
flush();
readfile($file['path']);
exit;
} else {
error_log("File for download >".$file['path']."< not found.");
return false;
}
更新 另一个问题是,根文件夹中已有一个favicon,但我想显示另一个。