gethostname

(PHP >= 5.3.0)

gethostname获取主机名

说明

string gethostname ( void )

gethostname() 可以获取本地机器的标准主机名。

返回值

成功时返回主机名称字符串,失败时返回 FALSE

范例

Example #1 简单的 gethostname() 例子

<?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
?>

参见

User Contributed Notes

sainthyoga2003 at gmail dot com 15-Jan-2014 02:28
for those who looks to get client machine name. this function only returns the server name where is running the app.

'n' parameter works for PHP 5.3 and earlier
------------------

para aquellos que buscan obtener el nombre de la máquina cliente. Esta función solo devuelve el nombre del servidor donde se está ejecutando el código.

El parámetro 'n' funciona para versiones anteriores a PHP 5.3
ws at satya-weblog dot com 02-Dec-2013 03:59
Reply to above answer that, on window (wins 7)
 echo gethostname();

is working now.