(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.
This function has no parameters.
Returns the port on which this server is listening.
Example #1 MongoDB\Driver\Server::getPort() example
<?php
$manager = new MongoDB\Driver\Manager("mongodb://localhost:27017/");
$server = $manager->selectServer();
var_dump($server->getPort());
?>
The above example will output:
int(27017)