淘宝網は非常に便利なIP地理情報クエリインターフェースを提供します。ここ: http://ip.taobao.com/
次の taabaoIPQuery クラスは、関連情報のクエリを大幅に簡素化します。
コードをコピーします コードは次のとおりです:
class taovaoIPQuery {
private $m_ip;
private $m_content;
public function __construct($ip ) {
If (isset($ ip)) {
$this-&g;
$url_handle =curl_init();
curl_setopt($url_handle, CURLOPT_URL, "http://ip.taabao.com/service/getIpInfo. php?ip=" . $this->m_ip); true ); content = json_decode($this-> m_content);
if ($this-> else {
exit("curl error!") ) _content ->{'data'}- >{'region'};
}
public function get_isp() {
return $this->m_content->{'data'}->{'isp' }; () () {
$ this-& gt; {'data'}-& gt; { 'data'}-> '都市'};
}
}
通話はとても簡単です
コードをコピーします
コードは次のとおりです:
$ip = $_SERVER["REMOTE_ADDR"];
$ipquery = new taabaoIPQuery($ip);
$region = $ipquery->get_region ();
$country = $ipquery->get_country();
$city = $ipquery->get_city();
http://www.bkjia.com/PHPjc/676912.html
www.bkjia.com
true
http://www.bkjia.com/PHPjc/676912.html
技術記事
Taobao は、非常に便利な IP 地理情報クエリ インターフェイスを提供します。ここ: http://ip.taabao.com/ 次の taabaoIPQuery クラスは、関連情報のクエリを大幅に簡素化します。 コードをコピー...