我想使用 ipinfodb API 查找网站访问者的国家代码。
当我尝试以下操作时http://api.ipinfodb.com/v3/ip-country/?key=<My_API_Key>&ip=<Some_IP>
,它会给出以下输出:
OK;;<Some_IP>;US;UNITED STATES
如何过滤此输出以使其仅显示国家代码?
问候,蒂莫西
编辑:
回复查尔斯,
在谷歌上搜索后,我知道可以给 API 一个“格式属性为 XML”,所以下面的工作。
$xml = simplexml_load_file('http://api.ipinfodb.com/v3/ip-country/?key=<My_API>&format=xml&ip=<Some_IP>);
echo $xml->countryCode;
如何在没有 XML 参数的情况下获得相同的输出?
谢谢