PHP SimpleXML 问题
我正在尝试使用curl 获取xml 流。我已经使用curl 收到了字符串,但在使用SimpleXML 解析xmlstream 时遇到了麻烦。我使用的网址是 http://www.google.com/books/feeds/volumes/ fR4vqfywNlgC 它似乎忽略了包含“dc”的部分。为什么?
I'm trying to get an xml stream by using curl. I've recieved the string with curl but I'm having troubles parsing the xmlstream with SimpleXML. The url im using is http://www.google.com/books/feeds/volumes/fR4vqfywNlgC
and it seems to be ignoring the parts containing "dc". Why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
都柏林核心数据(至少,我假设这就是 DC 前缀在本例中的含义)使用自己的命名空间。检索这些元素时需要引用该名称空间。这可以使用“children”方法来完成。
示例:
可以在此处找到详细说明问题和解决方案的文章/帖子。
http://blogs.sitepoint.com/simplexml-and-namespaces/
The dublin core data (at least, I'm assuming that's what the DC prefix means in this case) uses its own namespace. You need to refer to that namespace when retrieving these elements. This can be done using the 'children' method.
Example:
An article/posting detailing the problem and solution can be found here.
http://blogs.sitepoint.com/simplexml-and-namespaces/