(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.
Această funcție nu are parametri.
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/");
$rp = new MongoDB\Driver\ReadPreference(MongoDB\Driver\ReadPreference::RP_PRIMARY);
$server = $manager->selectServer($rp);
var_dump($server->getPort());
?>
Exemplul de mai sus va afișa:
int(27017)