0

我希望用户能够在选择下载之前在网站上查看文件(我需要进一步研究,PDF/doc 查看器,vid 播放器等)。对合适的方法有什么建议吗?

主要问题是允许他们下载文件。

我在另一篇 SO 帖子上读到:

<?php
$file = 'monkey.gif';

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, post-check=0, pre-check=0');
    header('Pragma: public');
    header('Content-Length: ' . filesize($file));
    ob_clean();
    flush();
    readfile($file);
    exit;
}
?>

是合适的,但是我将从数据库中提取文件名。我正在考虑使用标准下载页面,以便download.php?filename=thisFileToDownload可以传递文件名。

另一个问题是存在不同的文件类型,例如图像、视频、excel、文档和 pdf 等。我可能会遇到任何问题吗?

谢谢你的帮助

4

0 回答 0