You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 15, 2025. It is now read-only.
feed-io is designed to read feeds across the internet and to publish your own. Its main class is [FeedIo](https://github.com/alexdebril/feed-io/blob/master/src/FeedIo/FeedIo.php) :
@@ -76,6 +71,44 @@ foreach( $result->getFeed() as $item ) {
76
71
}
77
72
78
73
```
74
+
75
+
If you need to get only the new items since the last time you've consumed the feed, use the result's `getItemsSince()` method:
76
+
77
+
```php
78
+
// read a feed and specify the `$modifiedSince` limit to fetch only items newer than this date
0 commit comments