Home  >  Article  >  Backend Development  >  Use php to detect proxy_PHP tutorial

Use php to detect proxy_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 16:05:06867browse

Finally wrote something useful!
Able to detect most IPs accessed through proxy servers.
//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;
}
?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/315807.htmlTechArticleFinally wrote something useful! Able to detect most IPs accessed through proxy servers. ?php //beiji.com2000.6.17 $ip = getenv(REMOTE_ADDR); $v = getenv(HTTP_VIA); $f = getenv(H...
Statement:
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