PHP SimpleXML 问题

发布于 2024-11-05 04:00:21 字数 245 浏览 0 评论 0原文

我正在尝试使用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 技术交流群。

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

发布评论

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

评论(1

贱贱哒 2024-11-12 04:00:21

都柏林核心数据(至少,我假设这就是 DC 前缀在本例中的含义)使用自己的命名空间。检索这些元素时需要引用该名称空间。这可以使用“children”方法来完成。

示例:

$sxml = simplexml_load_string($xml);
$dcData = $sxml->children('dc', TRUE);
echo (string)$dcData->creator;

可以在此处找到详细说明问题和解决方案的文章/帖子。

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:

$sxml = simplexml_load_string($xml);
$dcData = $sxml->children('dc', TRUE);
echo (string)$dcData->creator;

An article/posting detailing the problem and solution can be found here.

http://blogs.sitepoint.com/simplexml-and-namespaces/

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