ID: 39074 Updated by: [EMAIL PROTECTED] Reported By: webmaster at smiliz dot info -Status: Open +Status: Feedback Bug Type: Unknown/Other Function Operating System: Windows XP PHP Version: 5.2.0RC5 New Comment:
Please makre sure you have a reachable working DNS server set up and give it a try with PHP CLI. Previous Comments: ------------------------------------------------------------------------ [2006-10-07 09:23:36] webmaster at smiliz dot info Description: ------------ OS : windows XP Apache 2.2.3 PHP 5.2 rc5 getHostByAddr not return host and the performance as reduced ! Reproduce code: --------------- $fai = @getHostByAddr($_SERVER['REMOTE_ADDR']); $fai = str_replace(' ','',$fai); $fai = strtolower($fai); $rep = explode('.', $fai); if ( $rep[0] == "" ) { $reponse = "Inconnu"; }elseif ( $rep[1] == "" ){ $reponse = ucwords($rep[0]); }else{ $reponse = ucwords($rep[count($rep)-2]).".".strtolower($rep[count($rep)-1]); } echo $reponse; echo var_dump(getHostByAddr($_SERVER['REMOTE_ADDR'])); => result : string(13) "xxx.xxx.xxx.xxx" Expected result: ---------------- wanadoo.fr Actual result: -------------- xxx.xxx ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=39074&edit=1