From:             webmaster at smiliz dot info
Operating system: Windows XP
PHP version:      5.2.0RC5
PHP Bug Type:     Unknown/Other Function
Bug description:  Problem with getHostByAddr

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 bug report at http://bugs.php.net/?id=39074&edit=1
-- 
Try a CVS snapshot (PHP 4.4): 
http://bugs.php.net/fix.php?id=39074&r=trysnapshot44
Try a CVS snapshot (PHP 5.2): 
http://bugs.php.net/fix.php?id=39074&r=trysnapshot52
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=39074&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=39074&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=39074&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=39074&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=39074&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=39074&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=39074&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=39074&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=39074&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=39074&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=39074&r=globals
PHP 3 support discontinued:   http://bugs.php.net/fix.php?id=39074&r=php3
Daylight Savings:             http://bugs.php.net/fix.php?id=39074&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=39074&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=39074&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=39074&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=39074&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=39074&r=mysqlcfg

Reply via email to