Войти через VK Войти через FB Войти через Google Войти через Яндекс
Поиск по сайту
Mongo::__construct
(PECL mongo >=0.9.0)
Mongo::__construct — Creates a new database connection object
Описание
Mongo::__construct ([ string $server = "mongodb://localhost:27017" [, array $options = array("connect" => TRUE) ]] )If no parameters are passed, this connects to "localhost:27017" (or whatever was specified in php.ini for mongo.default_host and mongo.default_port).
server should have the form:
mongodb://[username:password@]host1[:port1][,host2[:port2:],...]/db
The connection string always starts with mongodb://, to indicate it is a connection string in this form.
If username and password are specified, the constructor will attempt to authenticate the connection with the database before returning. Username and password are optional and must be followed by an @, if specified.
At least one host must be given (port optional, always defaulting to 27017) and as many hosts as desired may be connected to. Host names are comma-separated and the constructor will return successfully if it connected to at least one host. If it could not connect to any of the hosts, it will throw a MongoConnectionException.
Finally, if you specified a username and password, you may specify a database to authenticate with. If db is not specified, "admin" will be used.
Список параметров
server -
The server name.
options -
An array of options for the connection. Currently available options include:
- "connect"
If the constructor should connect before returning. Default is TRUE.
- "timeout"
For how long the driver should try to connect to the database (in milliseconds).
- "replicaSet"
The name of the replica set to connect to. If this is given, the master will be determined by using the ismaster database command on the seeds, so the driver may end up connecting to a server that was not even listed. See the replica set example below for details.
- "username"
The username can be specified here, instead of including it in the host list. This is especially useful if a username has a ":" in it. This overrides a username set in the host list.
- "password"
The password can be specified here, instead of including it in the host list. This is especially useful if a password has a "@" in it. This overrides a password set in the host list.
- "db"
The database to authenticate against can be specified here, instead of including it in the host list. This overrides a database given in the host list.
Возвращаемые значения
Returns a new database connection object.
Ошибки
Throws MongoConnectionException if it tries and fails to connect to the database for all hostnames given. It will also throw a MongoConnnectionException if an invalid username or password is given. See MongoConnectionException documentation for common exceptions and their causes.
Описание класса mongo, примеры использования класса mongo.
Смотрите также:
Описание на ru2.php.net
Описание на php.ru