根据IP地址获取地理位置(利用腾讯提供接口)

<?php
function get_ip_place()
{
    $ip = file_get_contents('http://fw.qq.com/ipaddress');
    $ip = str_replace('"', '', $ip);
    $ip = explode('(', $ip);
    $ip = substr($ip[1], 0, -2);
    $ip = explode(',', $ip);
    return $ip;
}
// test
$ip = get_ip_place();
print_r($ip);
?>


你可能感兴趣的:(地理位置)