PHP -- SimpleXMLElement -- 解析 im:image

发布于 2024-12-09 17:37:24 字数 465 浏览 1 评论 0原文

如何提取 im:image 元素。例如,我可以这样做:

$feed=file_get_contents($url);
$xml = new SimpleXMLElement($feed);
$title = $xml->entry[0]->title;
$html = $xml->entry[0]->content;

但我无法得到这个:

$img = $xml->entry[0]->im;

我如何瞄准这些?我也愿意使用 DOMDocument() 。

编辑:

<entry>
  <im:image height="55">
    http://foo.com/foo.jpg
  </im:image>
</entry>

How do I extract im:image elements. For instance, I can do this:

$feed=file_get_contents($url);
$xml = new SimpleXMLElement($feed);
$title = $xml->entry[0]->title;
$html = $xml->entry[0]->content;

But I can't get this:

$img = $xml->entry[0]->im;

How do I target those? I'm willing to use DOMDocument() as well.

EDIT:

<entry>
  <im:image height="55">
    http://foo.com/foo.jpg
  </im:image>
</entry>

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

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

发布评论

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

评论(1

半暖夏伤 2024-12-16 17:37:24

im 只是一个命名空间。你想要“图像”元素,而不是我 – Dmitri Snytkine 20 小时前

是的,这是事实,也是我需要的线索。

The im is just a namespace. You want 'image' element, not im – Dmitri Snytkine 20 hours ago

Yes, that's true, and the clue I needed.

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