PHP Doku:: Fetches toolkit for dealing with files stored in this database - mongodb.getgridfs.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAnbieterspezifische DatenbankerweiterungenMongoDB Native DriverCore ClassesThe MongoDB classMongoDB::getGridFS

Ein Service von Reinhard Neidl - Webprogrammierung.

The MongoDB class

<<MongoDB::getDBRef

MongoDB::getProfilingLevel>>

MongoDB::getGridFS

(PECL mongo >=0.9.0)

MongoDB::getGridFSFetches toolkit for dealing with files stored in this database

Beschreibung

public MongoGridFS MongoDB::getGridFS ([ string $prefix = "fs" ] )

Parameter-Liste

prefix

The prefix for the files and chunks collections.

Rückgabewerte

Returns a new gridfs object for this database.

Beispiele

Beispiel #1 MongoDB::getGridFS() example

This example demonstrates how get a MongoGridFS instance.

<?php

$db 
$mongo->my_db;

$prefix 'files';
$collection $db->getGridFS($prefix);

?>

Read more about the MongoGridFS to learn how to store files with MongoDB.


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)