|
MongoDB\Driver\Server::getInfoReturns an array of information about this server Beschreibung
final public array MongoDB\Driver\Server::getInfo
( void
)
Returns an array of information about this server. Parameter-ListeDiese Funktion hat keine Parameter. RückgabewerteReturns an array of information about this server. Fehler/Exceptions
BeispieleBeispiel #1 MongoDB\Driver\Server::getInfo example
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
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)
}
|