I'm trying to get attributes for "id" tag in feed with usage of simplepie.
This is the fragment of code from feed:
<updated>2012-03-12T08:26:29-07:00</updated>
<id im:id="488627" im:bundleId="dmtmobile">http://www.example.com</id>
<title>Draw Something by OMGPOP - OMGPOP</title>
I want to get number (488627) from im:id attribute contained in id tag
How can I get this ?
I tried $item->get_item_tags('','im:id')
but it didn't work