PHP Doku:: Gets the host name - function.gethostname.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige DiensteNetworkNetzwerk-Funktionengethostname

Ein Service von Reinhard Neidl - Webprogrammierung.

Netzwerk-Funktionen

<<gethostbynamel

getmxrr>>

gethostname

(PHP >= 5.3.0)

gethostnameGets the host name

Beschreibung

string gethostname ( void )

gethostname() gets the standard host name for the local machine.

Rückgabewerte

Returns a string with the hostname on success, otherwise FALSE is returned.

Beispiele

Beispiel #1 A simple gethostname() example

<?php
echo gethostname(); // may output e.g,: sandie

// Or, an option that also works before PHP 5.3
echo php_uname('n'); // may output e.g,: sandie
?>

Siehe auch

  • gethostbyname() - Ermittelt die zum angegebenen Internet-Hostnamen passende IPv4-Adresse
  • gethostbyaddr() - Ermittelt den zur angegebenen IP-Adresse passenden Internet-Hostnamen
  • php_uname() - Returns information about the operating system PHP is running on


2 BenutzerBeiträge:
- Beiträge aktualisieren...
JP
31.03.2010 10:55
You can use php_uname("n") in Windows to return the host name. You may have worked this out already but it took my a blinkin age!
will dot knauss at gmail dot com
4.03.2010 1:43
It looks like this function isn't available on windows.
Here is my code:
<?PHP
$var
= gethostname();
IF (
$var===FALSE) {
 echo
"The function ran but no results were returned!";
}
ELSE {
 echo
"The function returned a value\n\r";
 echo
$var;
}
?>
I received  an error:
"Fatal error: Call to undefined function gethostname() "



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",...)