MongoClient::dropDB

(PECL mongo >=1.3.0) Drops a database [deprecated] public array MongoClient::dropDB ( mixed $db ) Parameters: db The database to drop. Can be a MongoDB object or the name of the database. Returns: Returns the database response. Deprecated Use MongoDB::drop() instead.

MongoClient::__construct

(PECL mongo >=1.3.0) Creates a new database connection object public MongoClient::__construct ([ string $server = "mongodb://localhost:27017" [, array $options = array("connect" => TRUE) [, array $driver_options ]]] ) 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[:

MongoClient::connect

(PECL mongo >=1.3.0) Connects to a database server public bool MongoClient::connect ( void ) Returns: If the connection was successful. Exception: Throws MongoConnectionException if it fails to connect to the database.

MongoClient::close

(PECL mongo >=1.3.0) Closes this connection public bool MongoClient::close ([ boolean|string $connection ] ) The MongoClient::close() method forcefully closes a connection to the database, even if persistent connections are being used. You should never have to do this under normal circumstances. Parameters: connection If connection is not given, or FALSE then connecti

SplSubject::notify

(PHP 5 >= 5.1.0, PHP 7) Notify an observer abstract public void SplSubject::notify ( void ) Notifies all attached observers. Returns: No value is returned. This function is currently not documented; only its argument list is available.

SplSubject::detach

(PHP 5 >= 5.1.0, PHP 7) Detach an observer abstract public void SplSubject::detach ( SplObserver $observer ) Detaches an observer from the subject to no longer notify it of updates. Parameters: observer The SplObserver to detach. Returns: No value is returned. This function is currently not documented; onl

SplSubject::attach

(PHP 5 >= 5.1.0, PHP 7) Attach an SplObserver abstract public void SplSubject::attach ( SplObserver $observer ) Attaches an SplObserver so that it can be notified of updates. Parameters: observer The SplObserver to attach. Returns: No value is returned. This function is currently not documented; only its a

SplObserver::update

(PHP 5 >= 5.1.0, PHP 7) Receive update from subject abstract public void SplObserver::update ( SplSubject $subject ) This method is called when any SplSubject to which the observer is attached calls SplSubject::notify(). Parameters: subject The SplSubject notifying the observer of an update. Returns: No value is returned.

ArrayObject::unserialize

(PHP 5 >= 5.3.0, PHP 7) Unserialize an ArrayObject public void ArrayObject::unserialize ( string $serialized ) Unserializes a serialized ArrayObject. Parameters: serialized The serialized ArrayObject. Returns: The unserialized ArrayObject. This function is currently not documented; only its argument list i

ArrayObject::uksort

(PHP 5 >= 5.2.0, PHP 7) Sort the entries by keys using a user-defined comparison function public void ArrayObject::uksort ( callable $cmp_function ) This function sorts the keys of the entries using a user-supplied comparison function. The key to entry correlations will be maintained. Parameters: cmp_function The callback comparison function. Function cmp_function s