Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16184 программиста и 1779 роботов. Сейчас ищет 1731 программист ...
MongoDB\Driver\Server::getInfo - Returns an array of information about this server
Вернуться к: MongoDB\Driver\Server
MongoDB\Driver\Server::getInfo
(mongodb >=1.0.0)
MongoDB\Driver\Server::getInfo — Returns an array of information about this server
Описание
final public array MongoDB\Driver\Server::getInfo
( void
)
Returns an array of information about this server.
Список параметров
У этой функции нет параметров.
Возвращаемые значения
Returns an array of information about this server.
Ошибки
- Throws MongoDB\Driver\Exception\InvalidArgumentException on argument parsing errors.
Примеры
Пример #1 MongoDB\Driver\Server::getInfo() example
<?php
$manager = new MongoDB\Driver\Manager("mongodb://localhost:27017/");
$rp = new MongoDB\Driver\ReadPreference(MongoDB\Driver\ReadPreference::RP_PRIMARY);
$server = $manager->selectServer($rp);
var_dump($server->getInfo());
?>
Результатом выполнения данного примера будет что-то подобное:
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) }
Вернуться к: MongoDB\Driver\Server