-4

我正在使用这个 Iplocator 来定位用户国家

http://api.locatorhq.com/?user=Muhammad3241&key=c5018d1f3e2434e5277bc3143abbb41411f55834&ip=118.92.16.247&format=xml

我怎样才能只检索,以便我可以在 php 文件中使用它。

非常感谢,

4

1 回答 1

0

您可以使用 SimpleXML_Load_String() 将 XML 转换为对象,并使用 PHP 迭代器访问该对象。这显示了它是如何完成的。

http://www.laprbass.com/RAY_temp_atieh.php

<?php // RAY_temp_atieh.php
error_reporting(E_ALL);

// ACQUIRE AN OBJECT REPRESENTATION OF THE DATA
$url = 'http://api.locatorhq.com/?user=Muhammad3241&key=c5018d1f3e2434e5277bc3143abbb41411f55834&ip=118.92.16.247&format=xml';
$xml = file_get_contents($url);
$obj = simplexml_load_string($xml);

// ACTIVATE THIS TO SHOW THE WHOLE OBJECT
// var_dump($obj);

// ACQUIRE THE COUNTRY
$c = (string)$obj->countryName;

var_dump($c);
于 2012-12-17T14:34:56.013 回答