©
このドキュメントでは、 php中国語ネットマニュアル リリース
(PECL mongo >=0.9.0)
A connection between PHP and MongoDB.
This class extends MongoClient and provides access to several deprecated methods.
For backwards compatibility, it also defaults the "w" option of its constructor argument to 0, which does not require write operations to be acknowledged by the server. See MongoClient::__construct() for more information.
This class has been DEPRECATED as of version 1.3.0. Relying on this feature is highly discouraged. Please use MongoClient instead.
$size
)$ok
= true
] )$connection
] )$db
)$dbname
)$server_hash
, int|MongoInt64 $id
)$db
, string $collection
)$name
)$read_preference
[, array $tags
] )$w
[, int $wtimeout
] )[#1] markh789 at gmail dot com [2011-01-07 17:32:32]
Here is a simple connection function :)
<?php
function MongoConnect($username, $password, $database, $host) {
$con = new Mongo("mongodb://{$username}:{$password}@{$host}"); // Connect to Mongo Server
$db = $con->selectDB($database); // Connect to Database
}
?>