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.

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

报告相同问题?

悬赏问题

  • ¥35 平滑拟合曲线该如何生成
  • ¥100 c语言,请帮蒟蒻写一个题的范例作参考
  • ¥15 名为“Product”的列已属于此 DataTable
  • ¥15 安卓adb backup备份应用数据失败
  • ¥15 eclipse运行项目时遇到的问题
  • ¥15 关于#c##的问题:最近需要用CAT工具Trados进行一些开发
  • ¥15 南大pa1 小游戏没有界面,并且报了如下错误,尝试过换显卡驱动,但是好像不行
  • ¥15 自己瞎改改,结果现在又运行不了了
  • ¥15 链式存储应该如何解决
  • ¥15 没有证书,nginx怎么反向代理到只能接受https的公网网站