Php/docs/mongoid.gethostname

来自菜鸟教程
跳转至:导航、​搜索

MongoId::getHostname

(PECL mongo >= 1.0.8)

MongoId::getHostname获取这台机器上 id 所使用的 hostname


This extension that defines this method

is deprecated. Instead, the MongoDB extension should be used. There is no equivalent for this method in the new extension.

说明

public static MongoId::getHostname ( ) : string

返回的 hostname 用于 MongoId 产生唯一 id。 这和 gethostname() 应该会返回同样的值。

它和以下函数是一样的:

<?phppublic static function getHostname() {    return gethostname();}?>

参数

此函数没有参数。


返回值

返回 hostname。