0

我正在尝试从 api.hostip.info 获取有关 IP 地址的信息,但以下代码返回当前 XML 版本;

$context  = stream_context_create(array('http' => array('header' => 'Accept: application/xml')));
$url = 'http://api.hostip.info/?ip=12.215.42.19';

$xml = file_get_contents($url, false, $context);
$xml = simplexml_load_string($xml);
var_dump($xml);

如何从 URL 返回数据?

4

1 回答 1

0

因为 XML 包含冒号(命名空间),所以您必须稍作不同,并使用此方法访问命名空间:

var_dump($xml->children('gml', true)->featureMember->children()->Hostip);

/*
    object(SimpleXMLElement)#3 (5) {
      ["ip"]=>
      string(12) "12.215.42.19"
      ["countryName"]=>
      string(13) "UNITED STATES"
      ["countryAbbrev"]=>
      string(2) "US"
      ["comment"]=>
      object(SimpleXMLElement)#2 (0) {
      }
      ["ipLocation"]=>
      object(SimpleXMLElement)#5 (0) {
      }
    }
*/

..应该给你你想要的:

于 2013-04-16T13:27:17.850 回答