用 PHP 解析 GML

发布于 2024-10-21 10:21:09 字数 874 浏览 5 评论 0原文

我正在尝试使用 PHP 解析 GeoIP API 的 XML 输出:

<HostipLookupResultSet version="1.0.1" xsi:noNamespaceSchemaLocation="http://www.hostip.info/api/hostip-1.0.1.xsd">
<gml:description>This is the Hostip Lookup Service</gml:description>
<gml:name>hostip</gml:name>
−
<gml:boundedBy>
<gml:Null>inapplicable</gml:Null>
</gml:boundedBy>
−
<gml:featureMember>
−
<Hostip>
<ip>111.69.232.180</ip>
<gml:name>(Unknown City?)</gml:name>
<countryName>(Unknown Country?)</countryName>
<countryAbbrev>XX</countryAbbrev>
<!-- Co-ordinates are unavailable -->
</Hostip>
</gml:featureMember>
</HostipLookupResultSet>

作为一个完全的 XML 新手,我不知道如何使用我一直在使用的 simplexml_load_file PHP 函数处理额外的 GML 组件。如何使用 simplexml_load_file 从此 XML 中提取城市名称?

I'm attempting to parse the XML output of a GeoIP API with PHP:

<HostipLookupResultSet version="1.0.1" xsi:noNamespaceSchemaLocation="http://www.hostip.info/api/hostip-1.0.1.xsd">
<gml:description>This is the Hostip Lookup Service</gml:description>
<gml:name>hostip</gml:name>
−
<gml:boundedBy>
<gml:Null>inapplicable</gml:Null>
</gml:boundedBy>
−
<gml:featureMember>
−
<Hostip>
<ip>111.69.232.180</ip>
<gml:name>(Unknown City?)</gml:name>
<countryName>(Unknown Country?)</countryName>
<countryAbbrev>XX</countryAbbrev>
<!-- Co-ordinates are unavailable -->
</Hostip>
</gml:featureMember>
</HostipLookupResultSet>

As a complete XML neophyte, I don;t know how to handle the extra GML components with the simplexml_load_file PHP fuynction I've been using. How could I extract the city name from this XML using simplexml_load_file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

GRAY°灰色天空 2024-10-28 10:21:09

我使用网络链接中的原始 GML 文件尝试了您的案例,结果成功了。在您提供的 GML(也许与您测试的相同)中,应该存在影响其一致性的问题。所以 SimpleXML 无法工作。

你的PHP代码应该没有问题。我已经成功地使用 SimpleXML 来处理大型 GML 文件。与 XML 没有太大区别。

I tried your case with the original GML file from a web link, and it worked out. In your provided GML (and maybe the same you tested with), there should be a problem that affects its coherency. So SimpleXML couldn't work.

Your PHP code should have no problem. I already successfully use SimpleXML to process large GML files. Not much different from XML.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文