phpで”REMOTE_HOST”が取得できない場合の解決法

gethostbyaddr()でIPから変換。

<?php
$hostname = gethostbyaddr($_SERVER['REMOTE_ADDR']);
echo $hostname;
?>