Home > php教程 > php手册 > body text

用php来检测proxy

WBOY
Release: 2016-06-13 12:40:29
Original
1595 people have browsed it

终于写出个有用的东西了!
能够检测大部分通过代理服务器访问的ip.
//beiji.com   2000.6.17  
$ip = getenv("REMOTE_ADDR");  
$v = getenv("HTTP_VIA");  
$f = getenv("HTTP_X_FORWARDED_FOR");  
$c = getenv("HTTP_XROXY_CONNECTION");  
$o = getenv("HTTP_PRAGMA");  

print '
REMOTE_ADDR';  
print $ip;  

if (($v=="")&&($f=="")&&($c=="")&&($o=="")){  
print "
not through proxy";  
}  
else {  
print "
through proxy";  
print '
http_via: ';print $v;  
print '
http_x_forwarded_for: ';print $f;  
print '
http_xroxy_connection: ';print $c;  
print '
http_pragma: ';print $o;  
}  
?>  

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!