|
MongoDB\Driver\Server::getInfoReturns an array of information about this server Description
final public array MongoDB\Driver\Server::getInfo
( void
)
Returns an array of information about this server. ParametersThis function has no parameters. Return ValuesReturns an array of information about this server. Errors/Exceptions
ExamplesExample #1 MongoDB\Driver\Server::getInfo example
<?phpThe above example will output something similar to:
array(8) {
["ismaster"]=>
bool(true)
["maxBsonObjectSize"]=>
int(16777216)
["maxMessageSizeBytes"]=>
int(48000000)
["maxWriteBatchSize"]=>
int(1000)
["localTime"]=>
object(MongoDB\BSON\UTCDateTime)#4 (1) {
["milliseconds"]=>
int(1447276242774)
}
["maxWireVersion"]=>
int(3)
["minWireVersion"]=>
int(0)
["ok"]=>
float(1)
}
|