PHP Doku:: Creates new file collections - mongogridfs.--construct.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAnbieterspezifische DatenbankerweiterungenMongoDB Native DriverGridFS ClassesThe MongoGridFS classMongoGridFS::__construct

Ein Service von Reinhard Neidl - Webprogrammierung.

The MongoGridFS class

<<The MongoGridFS class

MongoGridFS::delete>>

MongoGridFS::__construct

(PECL mongo >=0.9.0)

MongoGridFS::__constructCreates new file collections

Beschreibung

MongoGridFS::__construct ( MongoDB $db [, string $prefix = "fs" ] )

Files as stored across two collections, the first containing file meta information, the second containing chunks of the actual file. By default, fs.files and fs.chunks are the collection names used.

Use one argument to specify a prefix other than "fs":

$fs = new MongoGridFS($db, "myfiles");
uses myfiles.files and myfiles.chunks collections.

Parameter-Liste

db

Database.

files

Optional collection name prefix.


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",...)