我正在尝试从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);
如何从网址返回数据?
答案 0 :(得分:0)
因为XML包含冒号(命名空间),所以你必须以不同的方式and use this method来访问命名空间:
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) {
}
}
*/
..应该准确地给你你想要的东西: