1

我使用 php 在 Mongodb 中存储了超过 250MB 的压缩文件。但我无法取回它。它只显示“0”数字。下面是我的代码。

$id = $_GET['id'];
require 'dbconnection.php';


$mongo = DBConnection::instantiate();
$gridFS = $mongo->database->getGridFS();

$object = $gridFS->findOne(array('_id' => new MongoId($id)));
header("Content-Transfer-Encoding: binary");
header('Content-type: '.$object->file['filetype']);
header('Expires: 0');


header("Content-disposition: attachment; filename=".$object->file['filename']);
//header('Content-name: '.$object->file['filename']);
  header('Content-Type:application-x/force-download'); 
echo $object->getBytes();

核实。这适用于小于 100MB 的文件。

4

1 回答 1

2

阅读文档,http ://php.net/manual/en/mongogridfsfile.getbytes.php

警告:这会将文件加载到内存中。如果文件大于您的内存,这将导致问题!

所以你需要将大文件存储在块中,然后循环并回显这些块,我搜索了谷歌并找到了这个(3.展示了如何基于块访问文件):

http://blog.hardkap.com/index.php/posts/00069/MongoDB---GridFS

于 2012-04-06T10:58:23.053 回答