Home  >  Article  >  Backend Development  >  How to get the IP address and region of Chianz.com in php_PHP tutorial

How to get the IP address and region of Chianz.com in php_PHP tutorial

WBOY
WBOYOriginal
2016-07-20 11:10:051173browse

The result of obtaining an IP is not very perfect. The reason is that the IP resolution of ip138 is not very detailed when dealing with foreign addresses, so I re-wrote the code using Chianz.com.











$ipAddr = "4.4.44.4 ";
$ipChinazAddr = "http://tool.chinaz.com/IP/?IP=".$ipAddr;
$contents = file_get_contents($ipChinazAddr);
$pattern = "/= =>>.+
/";
$string = $contents;
preg_match_all($pattern,$string,$addrArray);
$num = count($addrArray[0]);
$pattern = "/(==>>).+(==>>s)/";
for($i = 0; $i<$num;$i++){
$addrArray[0][$i] = preg_replace($pattern,"",$addrArray[0][$i]);
}
echo "

"; <br>print_r($addrArray); <br>echo "
";
?>


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/444762.htmlTechArticleThe result obtained by an IP is not very perfect. The reason is that the IP resolution of ip138 is not suitable for foreign addresses. It was very detailed, so I re-wrote the code using Chianz.com. !DOCTYPE h...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn