dragonsun2005 2016-07-23 09:00
浏览 64
已采纳

使用php下载文件,文件存储在文件夹中,文件名存储在数据库中

I am trying to download a file from mysqli database using php for that i have stored file in a folder and file name is stored in the mysqli database.

here is my code...

 $query= mysqli_query($dbo,"SELECT * FROM diff_questions WHERE email = ' $email ' and status= '0' ");
$rows=mysqli_fetch_array($query);
$file=$rows['file'];
$path='http://localhost/admin1/uploads';
?>

echo "<a href='download.php?file=".$file."&path=".$path." '>Download File</a> ";

and now download.php-

<?php
$file = $_GET["file"];
$path = $_GET["path"];
$fullfile = $path.$file;
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment; filename=" . Urlencode($file));   
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");
header("Content-Description: File Transfer");            
header("Content-Length: " . Filesize($fullfile));
flush();
$fp = fopen($fullfile, "r");
while (!feof($fp))
{
    echo fread($fp, 65536);
    flush();
} 
fclose($fp);
?>

Can someone please tell me what is wrong with code. Its not working . i mean it working file till saving file but its not downloading full file imean afther downloading file size of file is 0kb

  • 写回答

1条回答 默认 最新

  • dongluanan7163 2016-07-23 12:05
    关注

    Once replace your download.php with following code and check if its working for you or not :

    if(isset($_GET["file"])){
          $file = $_GET["file"];
          $path = $_GET["path"];
          $fullfile = $path.$file;
    
          header("Content-Type: application/octet-stream");
          header("Content-Disposition: attachment; filename=" . Urlencode($file));   
          header("Content-Type: application/force-download");
          header("Content-Type: application/octet-stream");
          header("Content-Type: application/download");
          header("Content-Description: File Transfer");            
          $fp = fopen($fullfile,'r');
            while ($line = fgets($fp)) {
            echo($line);
          }
          fclose($fp);
        }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog
  • ¥15 Excel发现不可读取的内容