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