(PECL mongo >=0.9.0)
Examples:

MongoGridFS represents the files and chunks collections. MongoGridFS extends MongoCollection, and an instance of MongoGridFS has access to all of MongoCollection methods, which act on the files collection:

<?php

$grid = $db->getGridFS();
$grid->update(array("filename" => "foo"), $newObj); // update on the files collection

?>

Another example of manipulating metadata:

<?php

// save a file
$id = $grid->storeFile("game.tgz");
$game = $grid->findOne();

// add a downloads counter
$game->file['downloads'] = 0;
$grid->save($game->file);

// increment the counter
$grid->update(array("_id" => $id), array('$inc' => array("downloads" => 1)));

?>

You can also access the chunks collection from an instance of MongoGridFS:

<?php

  $chunks = $grid->chunks; // $chunks is a normal MongoCollection
$chunks->insert(array("x" => 4));

?>

There are some methods for MongoGridFS with the same name as MongoCollection methods, that behave slightly differently. For example, MongoGridFS::remove() will remove any objects that match the criteria from the files collection and their content from the chunks collection.

To store something new in GridFS, there are a couple options. If you have a filename, you can say:

<?php

$grid->storeFile($filename, array("whatever" => "metadata", "you" => "want"));

?>

If you have a string of bytes that isn't a file, you can also store that using MongoGridFS::storeBytes():

<?php

$grid->storeBytes($bytes, array("whatever" => "metadata", "you" => "want"));

?>

MongoGridFS::findOne

(PECL mongo >=0.9.0) Returns a single file matching the criteria

2016-02-24 16:20:52
MongoGridFS::delete

(PECL mongo >=1.0.8) Remove a file and its chunks from the database

2016-02-24 16:20:52
MongoGridFS::storeFile

(PECL mongo >=0.9.0) Stores a file in the database

2016-02-24 16:20:53
MongoGridFS::remove

(PECL mongo >=0.9.0) Remove files and their chunks from the database

2016-02-24 16:20:52
MongoGridFS::storeUpload

(PECL mongo >=0.9.0) Stores an uploaded file in the database

2016-02-24 16:20:53
MongoGridFS::__construct

(PECL mongo >=0.9.0) Creates new file collections

2016-02-24 16:20:51
MongoGridFS::drop

(PECL mongo >=0.9.0) Drops the files and chunks collections

2016-02-24 16:20:52
MongoGridFS::find

(PECL mongo >=0.9.0) Queries for files public

2016-02-24 16:20:52
MongoGridFS::put

(PECL mongo >=1.0.8) Stores a file in the database

2016-02-24 16:20:52
MongoGridFS::get

(PECL mongo >=1.0.8) Retrieve a file from the database

2016-02-24 16:20:52