MongoDB\Driver\Server::getPort

(mongodb >=1.0.0)

MongoDB\Driver\Server::getPortReturns the port on which this server is listening

说明

final public MongoDB\Driver\Server::getPort(): int

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)

参见

添加备注

用户贡献的备注

此页面尚无用户贡献的备注。
To Top