自身のIPアドレスとドメイン名を返す

  • タグ:
  • タグはありません
<?php
    $ip = $_SERVER["REMOTE_ADDR"];
    $host = gethostbyaddr($ip);
    print "${host}(${ip})";
?>