4ngel’s blog ( http://www.sablog.net/blog/ ) :
记录下来,说不定可以用到我的天气预报查询网去。
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();
var_dump($ip);