php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Doc Bug #17713 Request Reverse Lookup Reserved Variable
Submitted: 2002-06-11 16:05 UTC Modified: 2003-01-18 19:59 UTC
From: vnolton at pragakhan dot com Assigned:
Status: Closed Package: Documentation problem
PHP Version: 4.2.1 OS: Solaris,freebsd
Private report: No CVE-ID: None
 [2002-06-11 16:05 UTC] vnolton at pragakhan dot com
$REMOTE_ADDR returns the ip of the remote user 127.0.0.1 (example). Some of us have apache setup to do reverse lookups of the ips for logging. Could there not be a way (without using a lookup function) to have a reserved variable return the already reversed IP?
$REMOTE_ADDR_EXT could maybe return www.blah.com

Just a request. Sorry to bother you all.

Victor 'Ven' Nolton

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-06-11 19:44 UTC] yohgaki@php.net
IMO, we shouldn't do that. It can be done by 1 line of php script. As you know, DNS lookup is _expensive_ operation and kills performance a lot. If you need reverse lookup, do it by yourself.



 [2002-06-11 19:50 UTC] sniper@php.net
Yasuo, the request was for the possible already reversed
name. That would not increase any but the opposite since
that is already done: Now you _have_ to do that anyway..

Not sure though if this is possible.

 [2002-06-11 20:26 UTC] vnolton at pragakhan dot com
I understand it can be done with one statement. but I figure if apache already has this done, it would be less demanding to just have a way to grab it with a variable. I already discovered how much it kills the cpu to reverse the ip. But since on some machines it's already reversed why not take advantage of this and save yourself the second step of reversing something that has already been reversed.

Was just a thought. I understand if it's not a good idea.

Sorry again

Victor Nolton
 [2002-06-15 22:37 UTC] sniper@php.net
This was easy to implement. :)
Just set 'HostnameLookups On' in httpd.conf
and you'll get an extra variable: REMOTE_HOST which
contains this information.

This just isn't documented (in predefined variables).
It's ONLY available when the above mentioned directive is set 'On'.

 [2002-06-15 23:23 UTC] vnolton at pragakhan dot com
Thanks guys. I swear I investigated this for a long time.. I guess I missed it :(

Thanks
 [2003-01-18 19:59 UTC] philip@php.net
This has now been documented:
http://cvs.php.net/cvs.php/phpdoc/en/appendices/reserved.xml

Thanks for the report :)
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Wed Sep 18 22:01:26 2024 UTC