允许用户从服务器查看和下载文件

时间:2013-07-24 23:05:19

标签: php web download

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

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

我在另一篇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等等。我可能会遇到任何问题吗?

感谢您的帮助

0 个答案:

没有答案