#SimplePie
Meine #TYPO3 Extension Feed Display ist mit Version 3.0 jetzt für TYPO3 #v14 verfügbar! Auch #v13 wird weiterhin unterstützt.

Damit lassen sich #RSS- und #Atom-Feeds auf Basis von #SimplePie auslesen und für die Ausgabe im TYPO3-Frontend aufbereiten.

github.com/ErHaWeb/feed...
GitHub - ErHaWeb/feed_display: This TYPO3 CMS Extension fetches and parses RSS and Atom web feeds with the SimplePie library and prepares them for frontend display.
This TYPO3 CMS Extension fetches and parses RSS and Atom web feeds with the SimplePie library and prepares them for frontend display. - ErHaWeb/feed_display
github.com
May 6, 2026 at 8:39 PM
#Photos #Rss #Feed #SimplePie #Example #Gallery #Album

If You Like To View The Latest 90 Photos Within A Category It Is Possible To Create A Rss Feed With These Items.

Example: simplepie.tomdings.com?feed=https%3...

Will Provide Some More Details On My Blog: about.tomdings.com/creating-rss...
February 25, 2025 at 3:01 PM
Neues Update von FreshRSS

Leute, lest mehr Feeds. Kostenlos, vielseitig und immer aktuell 😊
https://github.com/FreshRSS/FreshRSS/releases/tag/1.25.0
Release FreshRSS 1.25.0 · FreshRSS/FreshRSS
Milestone In this release, the coding focus has been on moving to PHP 8.1+ and refactoring the integration of the SimplePie library (which was long due). At the same time, plenty of new features h...
github.com
December 23, 2024 at 11:38 AM
OMG, yes! #freshrss 1.25 adds a user setting to define which criterion to use in order to define articles' unicity. I am finally able to fix duplicate entries in some feeds ! (looking at you, DPReview)

https://github.com/FreshRSS/FreshRSS/releases/tag/1.25.0
Release FreshRSS 1.25.0 · FreshRSS/FreshRSS
Milestone In this release, the coding focus has been on moving to PHP 8.1+ and refactoring the integration of the SimplePie library (which was long due). At the same time, plenty of new features h...
github.com
December 29, 2024 at 9:57 AM
Mit WP-Plugin SimplePie (https://wordpress.org/plugins/simplepie-plugin-for-wordpress/#other_notes) zeig ich in Sidebar die neusten 3 Artikel aus ciberaBlog & Stabi-Blog an: https://textundblog.de/
November 22, 2024 at 5:19 PM
hcal'd <a href="http://factoryjoe.com/stream/" class="hover:underline text-blue-600 dark:text-sky-400 no-card-link" target="_blank" rel="noopener" data-link="bsky">http://factoryjoe.com/stream/ coming soon, now with simplepie so it can support more feed formats( like atom), and valid XHTML (ew, tables?)
Page not found – Factory Joe
This can all be made better. Ready? Begin
factoryjoe.com
November 9, 2024 at 12:26 AM
adding twitter-stati (plural of status?) to my blog's sidebar with simplepie.
November 8, 2024 at 10:36 PM
reviewing simplepie 1.0 change list. can't wait to upgrade, and then find a use for all of the great new stuff.
November 8, 2024 at 9:45 PM
I'm very sad about this, but respect the dev team's decision. SimplePie is ceasing development. <a href="http://j.mp/Hjhw" class="hover:underline text-blue-600 dark:text-sky-400 no-card-link" target="_blank" rel="noopener" data-link="bsky">http://j.mp/Hjhw (via @Skyzyx)
November 7, 2024 at 11:02 AM
Feed API on Drupal 5 needs the simplepie parser to correctly parse WordPress full text (which is in content:encoded)
March 6, 2025 at 7:57 PM
Today I shall mostly be hacking about with SimplePie and forgetting that email I owe @williamjturkel
March 2, 2012 at 11:56 AM
I &lt;3 SimplePie and RSS. I don't &lt;3 ppl who publish RSS feeds without item-level timestamps.
March 3, 2012 at 10:42 PM
If you know PHP, you could build your own RSS reader with SimplePie http://t.co/HeWuXaJ7QS
March 13, 2013 at 11:56 PM
working simplepie into a project ... http://simplepie.org/
May 2, 2025 at 2:47 AM
How to Read an RSS Feed with PHP Using SimplePie
If you need to load an RSS feed with the PHP programming language, the open source library SimplePie greatly simplifies the process of pulling in items from a feed to present on a website, store in a database or do something else coooool with the data. There's a full installation guide for SimplePie but you can skip it with just three steps: 1. Download SimplePie 1.5. 2. Copy the file `autoloader.php` and the folder `library` to a folder that's accessible from your PHP code. 3. Make note of this folder; you'll be using `require_once()` to load `autoloader.php` from that location. SimplePie has been designed to work the same regardless a feed's format. It supports RSS 2.0, RSS 1.0, Atom and the earlier versions of RSS. Additionally it can read feed elements from nine namespaces. Here's PHP code that loads feed items from the news site Techdirt and displays them in HTML: `// load the SimplePie library require_once('/var/www/libraries/simplepie-1.5/autoloader.php'); // load the feed $feed = new SimplePie(); $feed->set_feed_url('https://www.techdirt.com/feed/'); $feed->init(); $feed->handle_content_type(); // create the output $html_output = ''; foreach ($feed->get_items() as $item) { Â Â $html_output .= '<p><a href="' . $item->get_link() . '">' . $item->get_title() . '</a></p>'; Â Â $html_output .= $item->get_description(); Â Â $html_output .= '<p>By ' . $item->get_author(0)->get_name() . ', ' . $item->get_date(); } // display the output ECHO <<<END $html_output END; ` The API documentation for SimplePie_Item lists the functions that can extract data from each feed item. The versatility of the library is demonstrated by get_authors(), which can retrieve an item's authorship information whether it was in the RSS author element, Dublin Core creator, iTunes author, or Atom author. SimplePie supports caching so that a feed isn't downloaded every time code is executed. The addition of these lines turns on caching, specifies the location of a cache folder and sets the time to use a cached version to four hours (14,400 seconds): `$feed->set_cache_location('/var/www/cache/'); $feed->set_cache_duration(14400); $feed->enable_cache();` SimplePie was created by RSS Advisory Board member Ryan Parman, Geoffrey Sneddon and Ryan McCue. The project is currently maintained on GitHub by Malcom Blaney.
www.rssboard.org
January 27, 2025 at 2:00 AM
How to Read an RSS Feed with PHP Using SimplePie
If you need to load an RSS feed with the PHP programming language, the open source library SimplePie greatly simplifies the process of pulling in items from a feed to present on a website, store in a database or do something else coooool with the data. There's a full installation guide for SimplePie but you can skip it with just three steps: 1. Download SimplePie 1.5. 2. Copy the file `autoloader.php` and the folder `library` to a folder that's accessible from your PHP code. 3. Make note of this folder; you'll be using `require_once()` to load `autoloader.php` from that location. SimplePie has been designed to work the same regardless a feed's format. It supports RSS 2.0, RSS 1.0, Atom and the earlier versions of RSS. Additionally it can read feed elements from nine namespaces. Here's PHP code that loads feed items from the news site Techdirt and displays them in HTML: `// load the SimplePie library require_once('/var/www/libraries/simplepie-1.5/autoloader.php'); // load the feed $feed = new SimplePie(); $feed->set_feed_url('https://www.techdirt.com/feed/'); $feed->init(); $feed->handle_content_type(); // create the output $html_output = ''; foreach ($feed->get_items() as $item) { Â Â $html_output .= '<p><a href="' . $item->get_link() . '">' . $item->get_title() . '</a></p>'; Â Â $html_output .= $item->get_description(); Â Â $html_output .= '<p>By ' . $item->get_author(0)->get_name() . ', ' . $item->get_date(); } // display the output ECHO <<<END $html_output END; ` The API documentation for SimplePie_Item lists the functions that can extract data from each feed item. The versatility of the library is demonstrated by get_authors(), which can retrieve an item's authorship information whether it was in the RSS author element, Dublin Core creator, iTunes author, or Atom author. SimplePie supports caching so that a feed isn't downloaded every time code is executed. The addition of these lines turns on caching, specifies the location of a cache folder and sets the time to use a cached version to four hours (14,400 seconds): `$feed->set_cache_location('/var/www/cache/'); $feed->set_cache_duration(14400); $feed->enable_cache();` SimplePie was created by RSS Advisory Board member Ryan Parman, Geoffrey Sneddon and Ryan McCue. The project is currently maintained on GitHub by Malcom Blaney.
www.rssboard.org
January 6, 2025 at 1:58 AM
How to Read an RSS Feed with PHP Using SimplePie
If you need to load an RSS feed with the PHP programming language, the open source library SimplePie greatly simplifies the process of pulling in items from a feed to present on a website, store in a database or do something else coooool with the data. There's a full installation guide for SimplePie but you can skip it with just three steps: 1. Download SimplePie 1.5. 2. Copy the file `autoloader.php` and the folder `library` to a folder that's accessible from your PHP code. 3. Make note of this folder; you'll be using `require_once()` to load `autoloader.php` from that location. SimplePie has been designed to work the same regardless a feed's format. It supports RSS 2.0, RSS 1.0, Atom and the earlier versions of RSS. Additionally it can read feed elements from nine namespaces. Here's PHP code that loads feed items from the news site Techdirt and displays them in HTML: `// load the SimplePie library require_once('/var/www/libraries/simplepie-1.5/autoloader.php'); // load the feed $feed = new SimplePie(); $feed->set_feed_url('https://www.techdirt.com/feed/'); $feed->init(); $feed->handle_content_type(); // create the output $html_output = ''; foreach ($feed->get_items() as $item) { Â Â $html_output .= '<p><a href="' . $item->get_link() . '">' . $item->get_title() . '</a></p>'; Â Â $html_output .= $item->get_description(); Â Â $html_output .= '<p>By ' . $item->get_author(0)->get_name() . ', ' . $item->get_date(); } // display the output ECHO <<<END $html_output END; ` The API documentation for SimplePie_Item lists the functions that can extract data from each feed item. The versatility of the library is demonstrated by get_authors(), which can retrieve an item's authorship information whether it was in the RSS author element, Dublin Core creator, iTunes author, or Atom author. SimplePie supports caching so that a feed isn't downloaded every time code is executed. The addition of these lines turns on caching, specifies the location of a cache folder and sets the time to use a cached version to four hours (14,400 seconds): `$feed->set_cache_location('/var/www/cache/'); $feed->set_cache_duration(14400); $feed->enable_cache();` SimplePie was created by RSS Advisory Board member Ryan Parman, Geoffrey Sneddon and Ryan McCue. The project is currently maintained on GitHub by Malcom Blaney.
www.rssboard.org
December 30, 2024 at 1:58 AM
How to Read an RSS Feed with PHP Using SimplePie
If you need to load an RSS feed with the PHP programming language, the open source library SimplePie greatly simplifies the process of pulling in items from a feed to present on a website, store in a database or do something else coooool with the data. There's a full installation guide for SimplePie but you can skip it with just three steps: 1. Download SimplePie 1.5. 2. Copy the file `autoloader.php` and the folder `library` to a folder that's accessible from your PHP code. 3. Make note of this folder; you'll be using `require_once()` to load `autoloader.php` from that location. SimplePie has been designed to work the same regardless a feed's format. It supports RSS 2.0, RSS 1.0, Atom and the earlier versions of RSS. Additionally it can read feed elements from nine namespaces. Here's PHP code that loads feed items from the news site Techdirt and displays them in HTML: `// load the SimplePie library require_once('/var/www/libraries/simplepie-1.5/autoloader.php'); // load the feed $feed = new SimplePie(); $feed->set_feed_url('https://www.techdirt.com/feed/'); $feed->init(); $feed->handle_content_type(); // create the output $html_output = ''; foreach ($feed->get_items() as $item) { Â Â $html_output .= '<p><a href="' . $item->get_link() . '">' . $item->get_title() . '</a></p>'; Â Â $html_output .= $item->get_description(); Â Â $html_output .= '<p>By ' . $item->get_author(0)->get_name() . ', ' . $item->get_date(); } // display the output ECHO <<<END $html_output END; ` The API documentation for SimplePie_Item lists the functions that can extract data from each feed item. The versatility of the library is demonstrated by get_authors(), which can retrieve an item's authorship information whether it was in the RSS author element, Dublin Core creator, iTunes author, or Atom author. SimplePie supports caching so that a feed isn't downloaded every time code is executed. The addition of these lines turns on caching, specifies the location of a cache folder and sets the time to use a cached version to four hours (14,400 seconds): `$feed->set_cache_location('/var/www/cache/'); $feed->set_cache_duration(14400); $feed->enable_cache();` SimplePie was created by RSS Advisory Board member Ryan Parman, Geoffrey Sneddon and Ryan McCue. The project is currently maintained on GitHub by Malcom Blaney.
www.rssboard.org
December 23, 2024 at 2:02 AM
The #TypoScript configuration of my #extension "Feed Display" can now also be added via #SiteSet in #v13 while the old way via #StaticInclude in the template record is still possible. #RSS #Feed #SimplePie
extensions.typo3.org/extension/fe...
Feed Display (feed_display)
Fetches and parses RSS and Atom web feeds with the SimplePie library and prepares them for frontend display
extensions.typo3.org
May 19, 2024 at 11:10 PM
My extension "Feed Display" is now compatible with #TYPO3 #v13! Please note that you may need to migrate your code to the new native `ignoreFlexFormSettingsIfEmpty` property. For more information check out the ChangeLog.
#rss #atom #SimplePie #plugin #feed
docs.typo3.org/p/erhaweb/fe...
2.0.0 - April 07, 2024 — Feed Display 2.0 documentation
docs.typo3.org
April 7, 2024 at 7:53 PM
Thinking about porting over my old homebuilt PHP RSS reader to make use of @SimplePie and #bootstrapcdn
November 16, 2024 at 4:28 AM
Damn @smwbmw for reminding me of how awesome @simplepie is ... I will surely be burning the midnight oil tonight.
November 16, 2024 at 1:35 AM
Going to redo my RSS Reader with SimplePie and JQuery, should be a fun rebuild.
November 16, 2024 at 1:05 AM