从服务器php下载文件

Gus*_*lva 13 php

我有一个URL,我从我的工作中保存了一些项目,它们大多是MDB文件,但也有一些JPG和PDF.

我需要做的是列出该目录中的每个文件(已经完成),并为用户提供下载它的选项.

如何使用PHP实现?

Mih*_*rga 33

要读取目录内容,可以使用readdir()并使用脚本(在我的示例download.php中)下载文件

if ($handle = opendir('/path/to/your/dir/')) {
    while (false !== ($entry = readdir($handle))) {
        if ($entry != "." && $entry != "..") {
            echo "<a href='download.php?file=".$entry."'>".$entry."</a>\n";
        }
    }
    closedir($handle);
}
Run Code Online (Sandbox Code Playgroud)

download.php您可以强制浏览器发送下载数据,并使用basename()来确保客户端不传递其他文件名../config.php

$file = basename($_GET['file']);
$file = '/path/to/your/dir/'.$file;

if(!file_exists($file)){ // file does not exist
    die('file not found');
} else {
    header("Cache-Control: public");
    header("Content-Description: File Transfer");
    header("Content-Disposition: attachment; filename=$file");
    header("Content-Type: application/zip");
    header("Content-Transfer-Encoding: binary");

    // read the file from disk
    readfile($file);
}
Run Code Online (Sandbox Code Playgroud)