用 PHP 解析 GML
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用网络链接中的原始 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.