5

我将如何使用 Regex 获取有关 IP 到 Location API 的信息

这是 API

http://ipinfodb.com/ip_query.php?ip=74.125.45.100

我需要获取国家名称、地区/州和城市。

我试过这个:

$ip = $_SERVER["REMOTE_ADDR"];
$contents = @file_get_contents('http://ipinfodb.com/ip_query.php?ip=' . $ip . '');
$pattern = "/<CountryName>(.*)<CountryName>/";
preg_match($pattern, $contents, $regex);
$regex = !empty($regex[1]) ? $regex[1] : "FAIL";
echo $regex;

当我执行 echo $regex 时,我总是失败,我该如何解决这个问题

4

3 回答 3

3

正如亚伦建议的那样。最好不要重新发明轮子,所以尝试用 simplexml_load_string() 解析它

// Init the CURL
$curl = curl_init();

// Setup the curl settings
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 0);

// grab the XML file
$raw_xml = curl_exec($curl);

curl_close($curl);

// Setup the xml object
$xml = simplexml_load_string( $raw_xml );

您现在可以将 $xml 变量的任何部分作为对象访问,这里是您发布的示例。

<Response> 
    <Ip>74.125.45.100</Ip> 
    <Status>OK</Status> 
    <CountryCode>US</CountryCode> 
    <CountryName>United States</CountryName> 
    <RegionCode>06</RegionCode> 
    <RegionName>California</RegionName> 
    <City>Mountain View</City> 
    <ZipPostalCode>94043</ZipPostalCode> 
    <Latitude>37.4192</Latitude> 
    <Longitude>-122.057</Longitude> 
    <Timezone>0</Timezone> 
    <Gmtoffset>0</Gmtoffset> 
    <Dstoffset>0</Dstoffset> 
</Response> 

现在,在您将此 XML 字符串加载到 simplexml_load_string() 之后,您可以像这样访问响应的 IP 地址。

$xml->IP;

simplexml_load_string() 将格式良好的 XML 文件转换为您可以操作的对象。我唯一能说的就是去尝试一下并玩一下

编辑:

来源 http://www.php.net/manual/en/function.simplexml-load-string.php

于 2010-06-27T01:44:07.883 回答
2

您最好使用 XML 解析器来提取信息。

例如,此脚本会将其解析为数组。

Regex 真的不应该用于解析 HTML 或 XML。

于 2010-06-27T01:35:56.763 回答
1

如果你真的需要使用正则表达式,那么你应该更正你正在使用的那个。"|<CountryName>([^<]*)</CountryName>|i"会更好。

于 2010-06-27T01:55:58.793 回答