Posted in simplepie php
3272
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
34
This Month
112
This Year
619

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
The mind must be given relaxation; it will arise better and keener after resting. As rich fields must not be forced-for their productiveness, the have no rest, will quickly exhaust them constantlabor will break the vigor of the mind, but if it is released and relaxed a little while, it will recover its powers
Seneca
Random CSS Property

translate3d()

The translate3d() CSS function repositions an element in 3D space. Its result is a <transform-function> data type.
translate3d() css reference