欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

PHP获取ip对应地区

程序员文章站 2022-04-18 17:06:46
...
跳至
  /**
  * 获取IP地区
  * Enter description here ...
  * @param unknown_type $ip
  */
 function GetArea($ip){

	$url = "http://ip168.com/ip/?ip=".$ip;
	$contents = file_get_contents($url);
//	preg_match_all('/<h3[\s\S]*?(<a[\s\S]*?)/',$contents,$rs);
	preg_match_all('|本站主数据:.*|',$contents,$rsR);
	$rsR[0][0] = str_replace("本站主数据:", "", $rsR[0][0]);
	$rsR[0][0] = str_replace("", "", $rsR[0][0]);
	return $rsR[0][0];
 }