PHP » GoLang |
login |
register |
about
|
GoLang MongoDB\Driver\Server::getInfo
request it (400)
GoLang replacement for PHP's MongoDB\Driver\Server::getInfo
[edit | history]
PHP MongoDB\Driver\Server::getInfoPHP original manual for MongoDB\Driver\Server::getInfo [ show | php.net ]MongoDB\Driver\Server::getInfo(mongodb >=1.0.0) MongoDB\Driver\Server::getInfo — Returns 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
<?php The 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) } |
more
Recently updated
more
Most requested
more
Last requests
|