PHP Doku:: Creates a new database - mongodb.construct.html

Verlauf / Chronik / History: (1) anzeigen

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

Ein Service von Reinhard Neidl - Webprogrammierung.

The MongoDB class

<<MongoDB::command

MongoDB::createCollection>>

MongoDB::__construct

(PECL mongo >=0.9.0)

MongoDB::__constructCreates a new database

Beschreibung

MongoDB::__construct ( Mongo $conn , string $name )

This method is not meant to be called directly. The preferred way to create an instance of MongoDB is through Mongo::__get() or Mongo::selectDB().

If you're ignoring the previous paragraph and want to call it directly you can do so:

<?php

$m 
= new Mongo();
$db = new MongoDB($m'mydbname');

?>

But don't. Isn't this much nicer:

<?php

$m 
= new Mongo();
$db $m->mydbname;

// or, if the name contains weird characters:

$db $m->selectDB('my,db:name');

?>

Parameter-Liste

Mongo conn

Database connection.

name

Database name.

Rückgabewerte

Returns the database.

Fehler/Exceptions

Throws default exception if the database name is invalid.


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