博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
php根据ip获取地址信息
阅读量:6157 次
发布时间:2019-06-21

本文共 1181 字,大约阅读时间需要 3 分钟。

hot3.png

'219.144.202.12');function curl_post($url, $header=array(), $data=array(), $referer=NULL, $timeout=5){    if (!$header) {      $header[] = "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8";      $header[] = "Accept-Charset: GB2312,utf-8;q=0.7,*;q=0.7";      $header[] = "Accept-Encoding: gzip,deflate";      $header[] = "User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; zh-CN; rv:1.9.2) Gecko/20100115 Firefox/3.6";    }    $ch = curl_init();    curl_setopt($ch, CURLOPT_POST, 1);    curl_setopt($ch, CURLOPT_URL, $url);    curl_setopt($ch, CURLOPT_HTTPHEADER, $header);    curl_setopt($ch, CURLOPT_TIMEOUT, 5);    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);    curl_setopt($ch, CURLOPT_ENCODING, '');    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);    if ($referer) curl_setopt($ch, CURLOPT_REFERER, $referer);    curl_setopt($ch, CURLOPT_POSTFIELDS, $data);    $r = curl_exec($ch);    curl_close($ch);    return $r;}$html= curl_post($url,null,$data,'http://ip.taobao.com/ipSearch.php');$json = json_decode($html);echo $json->data->country.$json->data->area.$json->data->region.$json->data->city;

 

转载于:https://my.oschina.net/u/234439/blog/784659

你可能感兴趣的文章
乐在其中设计模式(C#) - 提供者模式(Provider Pattern)
查看>>
MVP Community Camp 社区大课堂
查看>>
GWT用frame调用JSP
查看>>
大型高性能ASP.NET系统架构设计
查看>>
insert select带来的问题
查看>>
EasyUI 添加tab页(iframe方式)
查看>>
mysqldump主要参数探究
查看>>
好记心不如烂笔头,ssh登录 The authenticity of host 192.168.0.xxx can't be established. 的问题...
查看>>
使用addChildViewController手动控制UIViewController的切换
查看>>
Android Fragment应用实战
查看>>
SQL Server查询死锁并KILL
查看>>
内存或磁盘空间不足,Microsoft Office Excel 无法再次打开或保存任何文档。 [问题点数:20分,结帖人wenyang2004]...
查看>>
委托到Lambda的进化: ()=> {} 这个lambda表达式就是一个无参数的委托及具体方法的组合体。...
查看>>
apache 伪静态 .htaccess
查看>>
unity3d 截屏
查看>>
ASP.NET MVC学习之控制器篇
查看>>
MongoDB ServerStatus返回信息
查看>>
分析jQuery源码时记录的一点感悟
查看>>
android中的textview显示汉字不能自动换行的一个解决办法
查看>>
程序局部性原理感悟
查看>>