ArsenArsen
ArsenArsen

Reputation: 312

Hostname Detection PHP

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

Answers (1)

user4038080
user4038080

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

Related Questions