(PECL mongo >=0.9.2)
MongoGridFS::storeBytes — Chunkifies and stores bytes in the database
$bytes
[, array $extra
= array()
[, array $options
= array()
]] )
bytes
A string of bytes to store.
extra
Other metadata to add to the file saved.
options
Options for the store.
"w"
See WriteConcerns. The default value for MongoClient is 1.
The _id of the object saved.
Throws MongoCursorException if the "w" option is set and the write fails.
Throws MongoCursorTimeoutException if the "w" option is set to a value greater than one and the operation takes longer than MongoCursor::$timeout milliseconds to complete. This does not kill the operation on the server, it is a client-side timeout. The operation in MongoCollection::$wtimeout is milliseconds.