Home > Backend Development > PHP Tutorial > php gets city address based on ip_PHP tutorial

php gets city address based on ip_PHP tutorial

WBOY
Release: 2016-07-13 17:50:21
Original
961 people have browsed it

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;

}

www.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...
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