Heim  >  Artikel  >  Backend-Entwicklung  >  proxyserver 用php来检测proxy

proxyserver 用php来检测proxy

WBOY
WBOYOriginal
2016-07-29 08:33:221321Durchsuche

终于写出个有用的东西了!
能够检测大部分通过代理服务器访问的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;  
}  
?>  

以上就介绍了proxyserver 用php来检测proxy,包括了proxyserver方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn