php 通过ip获取所在城市地址信息 获取计算机外网ip

WBOY
Release: 2016-06-23 13:56:42
Original
1136 people have browsed it





通过IP获取归属地



请输入ip地址:




//获取ip地址
//$ip = $_SERVER['REMOTE_ADDR'];    //自动获取客户端的IP
//ip对应的地区
if(!empty($_POST['ip'])){
$ip = $_POST['ip'];
//接口地址,这样返回的是一个xml结果集,如图1;
$str = file_get_contents("http://ip.taobao.com/service/getIpInfo.php?ip=".$ip);
var_dump(json_decode($str,true));  
}


echo "
";
//获取计算机的外网ip
    function getClientIp(){  
    $socket = socket_create(AF_INET, SOCK_STREAM, 6);  
    $ret = socket_connect($socket,'ns1.dnspod.net',6666);  
    $buf = socket_read($socket, 16);  
    socket_close($socket);  
    return $buf;      
    }  
echo getClientIp();
$str1 = file_get_contents("http://ip.taobao.com/service/getIpInfo.php?ip=".$ip);
var_dump(json_decode($str1,true));
?>

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 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!