The code is quite simple, mainly using an address query interface from Youdao
function get_address_from_ip($ip)
{
$url='http://www.youdao.com/smartresult-xml/search.s?type=ip&q=';
$xml=file_get_contents($url.$ip);
$data=simplexml_load_string($xml);
return $data->product->location;
}
http://www.bkjia.com/PHPjc/478273.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/478273.htmlTechArticleThe code is quite simple, mainly using an address query interface function get_address_from_ip($ip) { $url =http://www.youdao.com/smartresult-xml/search.s?type=ipq=; $xml=file...
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