MongoDB\Driver\Server::getPort
(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.
エラー / 例外
- Throws MongoDB\Driver\Exception\InvalidArgumentException on argument parsing errors.
例
例1 MongoDB\Driver\Server::getPort() example
<?php
$manager = new MongoDB\Driver\Manager("mongodb://localhost:27017/");
$server = $manager->selectServer();
var_dump($server->getPort());
?>
上の例の出力は以下となります。
int(27017)
参考
- MongoDB\Driver\Server::getInfo() - Returns an array of information describing this server
- MongoDB\Driver\ServerDescription::getPort() - Returns the port on which this server is listening
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google