downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

Mongo::close> <예제
Last updated: Fri, 24 Jul 2009

view this page in

The Mongo class

소개

The connection point between MongoDB and PHP.

This class is used to initiate a connection and for database server commands. A typical use is:

<?php
$m 
= new Mongo(); // connect
$db $m->selectDatabase(); // get a database object
?>

클래스 개요

Mongo
Mongo {
/* Methods */
public boolean close ( void )
public boolean connect ( void )
protected boolean connectUtil ( string $username , string $password )
__construct ([ string $server= NULL [, boolean $connect= TRUE [, boolean $persistent= FALSE [, boolean $paired= FALSE ]]]] )
public array dropDB ( mixed $db )
public bool forceError ( void )
public string lastError ( void )
public boolean pairConnect ( void )
public boolean pairPersistConnect ([ string $username= "" [, string $password= "" ]] )
public boolean persistConnect ([ string $username= "" [, string $password= "" ]] )
public array prevError ( void )
public array repairDB ( MongoDB $db [, boolean $preserve_cloned_files= false [, boolean $backup_original_files= false ]] )
public array resetError ( void )
public MongoCollection selectCollection ( string|MongoDB $db , string $collection )
public MongoDB selectDB ( string $dbname )
public string __toString ( void )
}

Table of Contents



add a note add a note User Contributed Notes
Mongo
There are no user contributed notes for this page.

Mongo::close> <예제
Last updated: Fri, 24 Jul 2009
 
 
show source | credits | sitemap | contact | advertising | mirror sites