淘宝ip地址查询类分享(利用淘宝ip库)
发布:smiling 来源: PHP粉丝网 添加日期:2020-08-23 20:54:27 浏览: 评论:0
需要显示评论者的地域属性,这个特点可以通过记录会员IP的地理信息来实现,下面提供一个淘宝IP地址查询类,简化相关的信息查询,大家参考使用吧.
淘宝公司提供了一个很好用的IP地理信息查询接口。在这里:http://ip.taobao.com/
以下这个taobaoIPQuery类将极大的简化相关的信息查询。
- <?php
- class taobaoIPQuery {
- private $m_ip;
- private $m_content;
- public function __construct($ip) {
- if (isset($ip)) {
- $this->m_ip = $ip;
- } else {
- $this->m_ip = "";
- }
- if (!emptyempty($this->m_ip)) {
- $url_handle = curl_init();
- curl_setopt($url_handle, CURLOPT_URL, "http://ip.taobao.com/service/getIpInfo.php?ip=" . $this->m_ip);
- curl_setopt($url_handle, CURLOPT_RETURNTRANSFER, true);
- $this->m_content = curl_exec($url_handle);
- curl_close($url_handle);
- if ($this->m_content) {
- $this->m_content = json_decode($this->m_content);
- if ($this->m_content->{'code'} == 1) {
- exit("query error!");
- }
- } else {
- exit("curl error!");
- }
- } else {
- exit("ip address must be not empty!");
- }
- }
- public function get_region() {
- return $this->m_content->{'data'}->{'region'};
- }
- public function get_isp() {
- return $this->m_content->{'data'}->{'isp'};
- }
- public function get_country() {
- return $this->m_content->{'data'}->{'country'};
- }
- public function get_city() {
- return $this->m_content->{'data'}->{'city'};
- }
- }
调用很简单.
- $ip = $_SERVER["REMOTE_ADDR"];
- $ipquery = new taobaoIPQuery($ip);
- $region = $ipquery->get_region();
- $country = $ipquery->get_country();
- $city = $ipquery->get_city();
Tags: 淘宝ip地址查询
- 上一篇:PHP中如何实现常用邮箱的基本判断
- 下一篇:php时区转换转换函数
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)