PHP は、淘宝網 IP ライブラリを使用してユーザー IP の地理的位置を取得します
タオバオ IP アドレス データベース
タオバオは IP ライブラリ http://ip.taabao.com/ と REST API インターフェースを発表しましたが、各ユーザーのアクセス頻度は 10qps 未満である必要があります。
アクセス方法:
http://ip.taobao.com/service/getIpInfo.php?ip=[ip地址字串]
コンテンツを json 形式で返します。
IPクエリ、IP統計などの機能があります。主要事業者の保有IP数などの情報。次に、IP を取得する例を紹介します:
/** * 通过淘宝IP接口获取IP地理位置 * @param string $ip * @return: string **/ function getCity($ip) { $url="http://ip.taobao.com/service/getIpInfo.php?ip=".$ip; $ipinfo=json_decode(file_get_contents($url)); if($ipinfo->code=='1'){ return false; } $city = $ipinfo->data->region.$ipinfo->data->city; return $city; } header("Content-Type:text/html;charset=utf-8"); // 这样调用,显示福建省厦门市 var_dump(getCity("117.30.101.64"));
電話をかけるときは、固定 IP をクエリしたい IP に置き換えるだけです。