Posted in simplepie php
3275
4:33 am, September 29, 2022
 

simple pie get link from enclosure item in simplepie rss feed

i had an item like this in a rss feed, and i wanted to grab the enclosure url, took me a while to figure this out for some reason even though the solution is quite simple. 

PHP

<item>
<title>title</title>
<link>https://kruxor.com/</link>
<dc:creator>
<![CDATA[ KRUXOR ]]>
</dc:creator>
<enclosure url="https://kruxor.com/logo.jpg" type="image/jpeg"/>
<category>
<![CDATA[ Cat ]]>
</category>
<description>
<![CDATA[ Text ]]>
</description>
<content:encoded>
<![CDATA[ <p>Long Text</p> ]]>
</content:encoded>
<pubDate>Thu, 29 Sep 2022 03:10:07 GMT</pubDate>
<guid isPermaLink="true">https://kruxor.com/</guid>
</item>

Just use get_enclosure and then get_link rather than trying to access the object returned by the get_enclosure function. 

$game_news->image = $item->get_enclosure()->get_link();

..

View Statistics
This Week
37
This Month
115
This Year
622

No Items Found.

Add Comment
Type in a Nick Name here
 
Search Code
Search Code by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
You drown not by falling in the river, but by staying submerged.
Unknown
Random CSS Property

<frequency>

The <frequency> CSS data type represents a frequency dimension, such as the pitch of a speaking voice. It is not currently used in any CSS properties.
frequency#kHz css reference