如何上传文件并将其存储在mongodb中?

时间:2014-04-07 17:01:31

标签: php mongodb file-upload gridfs

在这个例子中"路径"是服务器中(上传)临时文件的路径?或客户端设备中的文件路径?我从$ _FILES读取文件元数据,但不知道在db中读取要存储的文件的位置。请帮忙。 (对不起我的英文)

<?php
    // connect to the ‘myGrid’ GridFS
    $m = new Mongo();
    $db = $m->myDB;
    $myGrid = $db->getGridFS('myGrid');
    $some_file='path of your video or audio file';
    // some extra data you may want to store with your file
    $data_array = array(
        'mime' => mime_content_type($some_file),
        'timestamp' => time(),
    );

    // store a file into the GridFS
    $myGrid->storeFile($some_file, $data_array);
?>

1 个答案:

答案 0 :(得分:0)

它是您输入的任何文件的路径,在这种情况下,它将是来自PHP tmp_name数组的$_FILES路径