Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

mongogridfs.put(3) [php man page]

MONGOGRIDFS.PUT(3)							 1							MONGOGRIDFS.PUT(3)

MongoGridFS::put - Stores a file in the database

SYNOPSIS
public mixed MongoGridFS::put (string $filename, [array $metadata = array()], [array $options = array()]) DESCRIPTION
Note MongoGridFS::put is an alias of MongoGridFS::storeFile. PARAMETERS
o $filename - Name of the file to store. o $metadata - Other metadata fields to include in the file document. Note These fields may also overwrite those that would be created automatically by the driver, as described in the MongoDB core documentation for the files collection. Some practical use cases for this behavior would be to specify a custom chunkSize or _id for the file. o $options - An array of options for the insert operations executed against the chunks and files collections. See MongoCollection.insert(3) for documentation on these these options. RETURN VALUES
Returns the _id of the saved file document. This will be a generated MongoId unless an _id was explicitly specified in the $metadata param- eter. ERRORS
/EXCEPTIONS Throws MongoGridFSException if there is an error reading $filename or inserting into the chunks or files collections. SEE ALSO
MongoGridFS.storeBytes(3), MongoGridFS.storeFile(3), MongoGridFS.storeUpload(3), MongoDB core docs on GridFS. PHP Documentation Group MONGOGRIDFS.PUT(3)

Check Out this Related Man Page

MONGOGRIDFS.STOREFILE(3)						 1						  MONGOGRIDFS.STOREFILE(3)

MongoGridFS::storeFile - Stores a file in the database

SYNOPSIS
public mixed MongoGridFS::storeFile (string|resource $filename, [array $metadata = array()], [array $options = array()]) DESCRIPTION
PARAMETERS
o $filename - Name of the file or a readable stream to store. o $metadata - Other metadata fields to include in the file document. Note These fields may also overwrite those that would be created automatically by the driver, as described in the MongoDB core documentation for the files collection. Some practical use cases for this behavior would be to specify a custom chunkSize or _id for the file. o $options - An array of options for the insert operations executed against the chunks and files collections. See MongoCollection.insert(3) for documentation on these these options. RETURN VALUES
Returns the _id of the saved file document. This will be a generated MongoId unless an _id was explicitly specified in the $metadata param- eter. ERRORS
/EXCEPTIONS Throws MongoGridFSException if there is an error reading $filename or inserting into the chunks or files collections. EXAMPLES
Example #1 MongoGridFS.storeFile(3) with additional metadata <?php $m = new MongoClient(); $gridfs = $m->selectDB('test')->getGridFS(); $id = $gridfs->storeFile('example.txt', array('contentType' => 'plain/text')); $gridfsFile = $gridfs->get($id); var_dump($gridfsFile->file); ?> The above example will output something similar to: array(7) { ["_id"]=> object(MongoId)#6(0) { } ["contentType"]=> string(10) "plain/text" ["filename"]=> string(11) "example.txt" ["uploadDate"]=> object(MongoDate)#7(0) { } ["length"]=> int(26) ["chunkSize"]=> int(262144) ["md5"]=> string(32) "c3fcd3d76192e4007dfb496cca67e13b" } SEE ALSO
MongoGridFS.put(3), MongoGridFS.storeBytes(3), MongoGridFS.storeUpload(3), MongoDB core docs on GridFS. PHP Documentation Group MONGOGRIDFS.STOREFILE(3)
Man Page

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

insert filename into file using SED (or AWK)

Hi, I would like to insert a file's filename into the first line of that file - for a batch of files. Is this possible using SED? Thanks in advance. (2 Replies)
Discussion started by: USER#5
2 Replies

2. UNIX for Dummies Questions & Answers

problem with the blank spaces in array

Hi all! i need your help. I'm getting started with this... in need to insert in an array string values. But the thing is that this strings have blank spaces... for example if a want to put "filed1 = " and "field2 = " .... in the array , when i want to print all the fields, it only shows... (4 Replies)
Discussion started by: kamicasse
4 Replies

3. Shell Programming and Scripting

How to use sed to replace space partial

source "PUT 810 712 0001 ILC AK4 00 0 00 00" It needs to be changed to "PUT,810,712,0001,ILC,AK4 00 0 00 00" Thanks in advance. (6 Replies)
Discussion started by: janex
6 Replies

4. Shell Programming and Scripting

reading data from a file to an array

I need some help with this code below, i doesnt know why it will run twice with my function, but my function only got if else, any other way that can read line and put into array? while read line; do read -A array <<<$line n=${#array} for ((i=1;i<$n;i++)); do print... (1 Reply)
Discussion started by: gavin_L
1 Replies

5. UNIX and Linux Applications

About gvfsd-metadata

I need a hint about gvfsd-metadata using mate on bsd. Or dual-core cpu, quad-core cpu ore an old laptop single core, the gvfsd is an obstacle and does not accelerate anything, vice versa, it slows down many processes, coming from gnome. So someone can give me a hint how to wipe it out for good? I... (1 Reply)
Discussion started by: 1in10
1 Replies