MongoGridFS
PHP Manual

MongoGridFS::storeBytes

(PECL mongo >=0.9.2)

MongoGridFS::storeBytesChunkifies and stores bytes in the database

Opis

public mixed MongoGridFS::storeBytes ( string $bytes [, array $extra = array() [, array $options = array() ]] )

Parametry

bytes

A string of bytes to store.

extra

Other metadata to add to the file saved.

options

Options for the store.

Zwracane wartości

The _id of the object saved.

Błędy/Wyjątki

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.


MongoGridFS
PHP Manual