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>
link|improve this question
And your XML is.... rss? – Marc B Oct 13 '11 at 18:54
Yes, RSS, thanks – user2890 Oct 13 '11 at 19:16
The im is just a namespace. You want 'image' element, not im – Dmitri Snytkine Oct 13 '11 at 19:28
Thanks Dmitri, that was the clue I needed. – user2890 Oct 13 '11 at 20:39
feedback

1 Answer

up vote 0 down vote accepted

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.