MongoDB\Driver\Server::getHost
(mongodb >=1.0.0)
MongoDB\Driver\Server::getHost — Returns the hostname of this server
パラメータ
この関数にはパラメータはありません。
戻り値
Returns the hostname of this server.
エラー / 例外
- Throws MongoDB\Driver\Exception\InvalidArgumentException on argument parsing errors.
例
例1 MongoDB\Driver\Server::getHost() example
<?php
$manager = new MongoDB\Driver\Manager("mongodb://localhost:27017/");
$server = $manager->selectServer();
var_dump($server->getHost());
?>
上の例の出力は以下となります。
string(9) "localhost"
参考
- MongoDB\Driver\Server::getInfo() - Returns an array of information describing this server
- MongoDB\Driver\ServerDescription::getHost() - Returns the hostname of this server
+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