(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)