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?>