略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: Mongo

2024-04-29

The Mongo class [deprecated]

(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.

Warning

This class has been DEPRECATED as of version 1.3.0. Relying on this feature is highly discouraged. Please use MongoClient instead.

类摘要

Mongo extends MongoClient {
/* 方法 */
protected connectUtil ( void ) : bool
public static getPoolSize ( void ) : int
public getSlave ( void ) : string
public getSlaveOkay ( void ) : bool
public poolDebug ( void ) : array
public static setPoolSize ( int $size ) : bool
public setSlaveOkay ([ bool $ok = TRUE ] ) : bool
public switchSlave ( void ) : string
/* 继承的方法 */
public MongoClient::close ([ boolean|string $connection ] ) : bool
public MongoClient::connect ( void ) : bool
public MongoClient::dropDB ( mixed $db ) : array
public MongoClient::__get ( string $dbname ) : MongoDB
public static MongoClient::getConnections ( void ) : array
public MongoClient::getHosts ( void ) : array
public MongoClient::getReadPreference ( void ) : array
public MongoClient::getWriteConcern ( void ) : array
public MongoClient::killCursor ( string $server_hash , int|MongoInt64 $id ) : bool
public MongoClient::listDBs ( void ) : array
public MongoClient::selectCollection ( string $db , string $collection ) : MongoCollection
public MongoClient::selectDB ( string $name ) : MongoDB
public MongoClient::setReadPreference ( string $read_preference [, array $tags ] ) : bool
public MongoClient::setWriteConcern ( mixed $w [, int $wtimeout ] ) : bool
public MongoClient::__toString ( void ) : string
}

Table of Contents

add a note add a note

User Contributed Notes 1 note

up
-8
markh789 at gmail dot com
8 years ago
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
}
?>

官方地址:https://www.php.net/manual/en/class.mongo.php

冷却塔厂家 广告
中文GPT4.0无需注册 广告
北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3