Reputation: 312
how to detect Hostname, like on http://www.whatsmyip.org/more-info-about-you/ at Hostname: Your.Hostname. I need it for my own PHP script.
Upvotes: 0
Views: 157
Reputation:
<?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
?>
http://php.net/manual/de/function.gethostname.php
Upvotes: 2