(mongodb >=1.0.0)
MongoDB\Driver\Server::getPort — Returns the port on which this server is listening
Returns the port on which this server is listening.
У цієї функції немає параметрів.
Returns the port on which this server is listening.
Приклад #1 MongoDB\Driver\Server::getPort() example
<?php
$manager = new MongoDB\Driver\Manager("mongodb://localhost:27017/");
$server = $manager->selectServer();
var_dump($server->getPort());
?>
Поданий вище приклад виведе:
int(27017)