用php(mysql)下载Blob文件

时间:2015-09-16 10:38:45

标签: php mysql file blob

我有一个MySQL数据库,我有一个表调用例如" ALL"可以包含blob文件。

在表格中,我存储了:文件大小,类型,名称和内容。

当我尝试下载blob文件时出现问题。

这是我的剧本:

<?php
$connection =  mysqli_connect("localhost","user","password",dbname)
or die('Database Connection Failed');
mysqli_set_charset($connection,'utf-8');

$query = "SELECT * " ."FROM ALL WHERE id = '25'";
$result = mysqli_query($connection,$query) 
or die('Error, query failed');

 list($id, $user_made, $title, $category, $sub_category, $text, $type, $date, $time, $namefile1, $typefile1, $sizefile1, $contentfile1, $namefile2, $typefile2, $sizefile2, $contentfile2, $namefile3, $typefile3, $sizefile3, $contentfile3) = mysqli_fetch_array($result);
 echo $id . $namefile1 . $typefile1 . $sizefile1;
 header('Content-Length: '.$sizefile1);
 header('Content-Type: '.$typefile1);
 header('Content-Disposition: attachment; filename="'.$namefile1.'"');
 header('Content-Transfer-Encoding: binary');
 header('Cache-Control: must-revalidate, post-check=0, pre-check=0');  
 ob_clean();
 flush();
 // echo $contentfile1;
 mysqli_close($connection);
 exit;
?>

但页面只输出&#34; $ contentfile1&#34;的回声。和&#34; $ id。 $ namefile1。 $ typefile1。 $ sizefile1&#34;

每个人都可以帮助我吗? 感谢

1 个答案:

答案 0 :(得分:0)

在ob_clean之前添加此代码。

    $context = stream_context_create();
    $file = fopen($filename, 'rb', FALSE, $context);
    while(!feof($file))
    {
       echo stream_get_contents($file, max_bytes_to_read);
    }
    fclose($file);

您可以在http://php.net/manual/en/function.stream-get-contents.php

获取有关stream_get_contents的更多信息