duanjing4623 2019-07-03 09:22
浏览 230
已采纳

用于通过网站从包含服务器上指定文件夹中的文件的列表页面下载文件的PHP脚本

I need the option to show other people who are not programmers the variety of files they could download from the FTP server folder (I use WinSCP)

Now the problem with the code is that if you write one specific file name in the PHP script, you can download it without a problem. But what i need is for them to upload(which works fine) but also for them to be able(some other time or someone else) to choose from the previous uploaded files and to download that specific one that they selected.

So the precise thing we need is to open the folder, show all the files in there and then to be able to choose from one of those files and download it.

Does anyone know how to solve this or is it even possible?

<?php
//uploads is the folder name at the ftp server
if ($handle = opendir('uploads/')) {
    while (false !== ($entry = readdir($handle)))
    {
        //
        if ($entry != "." && $entry != "..") {
            //download.php is the file where we write the code
            echo "<a href='download.php?file=".$entry."'>".$entry."</a>
";
        }
    }

    closedir($handle);//
}

// we are trying to get the files by listing it with .$file variable
$file = basename($_GET['file']);
$file = 'uploads/'.$file;

//here we are 
$mimi = $file;

if(!mimi_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);
}
?>

With this previous code, the file names (from the folder) are listed and shown as links but there is no action when we click on them.

  • 写回答

1条回答 默认 最新

  • dsaf32131 2019-07-03 09:52
    关注

    The code that

    1. Lists the files
    2. Downloads a file

    must be separate.


    (While not strictly necessary), easy way is to put them into separate files, like list.php and download.php. The list.php will generate a list of download links, which will points to download.php (what you already do in the opendir ... closedir block):

    if ($handle = opendir('uploads/')) {
        while (false !== ($entry = readdir($handle)))
        {
            //
            if ($entry != "." && $entry != "..") {
                //download.php is the file where we write the code
                echo "<a href='download.php?file=".$entry."'>".$entry."</a>
    ";
            }
        }
    
        closedir($handle);//
    }
    

    The download.php will contain the rest of your code:

    // we are trying to get the files by listing it with .$file variable
    $file = basename($_GET['file']);
    $filepath = 'uploads/'.$file;
    
    if(!file_exists($filepath)){ // 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($filepath);
    }
    

    (I have replaced your strange mimi_exists with file_exists and fixed the issues that internal "upload" file path got accidentally sent to the browser)


    A similar question: List and download clicked file from FTP.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料
  • ¥15 使用R语言marginaleffects包进行边际效应图绘制
  • ¥20 usb设备兼容性问题
  • ¥15 错误(10048): “调用exui内部功能”库命令的参数“参数4”不能接受空数据。怎么解决啊
  • ¥15 安装svn网络有问题怎么办