PHP Doku:: Gets the hostname being used for this machine s ids - mongoid.gethostname.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAnbieterspezifische DatenbankerweiterungenMongoDB Native DriverTypesThe MongoId classMongoId::getHostname

Ein Service von Reinhard Neidl - Webprogrammierung.

The MongoId class

<<MongoId::__construct

MongoId::getInc>>

MongoId::getHostname

(PECL mongo >= 1.0.8)

MongoId::getHostnameGets the hostname being used for this machine's ids

Beschreibung

publicstaticstring MongoId::getHostname ( void )

This returns the hostname MongoId is using to generate unique ids. This should be the same value gethostname() returns.

It is identical to the function:

<?php

public static function getHostname() {
    return 
gethostname();
}

?>

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

Returns the hostname.


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)