Home > php教程 > PHP源码 > body text

一句话拿到客户端IP

PHP中文网
Release: 2016-05-23 17:09:28
Original
1302 people have browsed it

<?php
$client = $_SERVER[&#39;REMOTE_ADDR&#39;];
 
/*
很多人看到这就要说话了,要是用代理呢?
 
代理2种,透明/高匿
 
判断代理一般都是用的 x-forwarded-for 这个Header可以直接在客户端伪造(比如我现在就是挂着1.1.1.1)
 
高匿代理在Header中没有任何其他附加头.就算你想获取你也获取不到,如果对方用的高匿你就放了他吧.高匿是个稀有物品
 
 
*/
?>
Copy after login

Related labels:
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